Skip to content

Commit c31a440

Browse files
authored
Update to Java SDK 1.0.9 (temporalio#105)
1 parent 60985cf commit c31a440

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ repositories {
3030
}
3131

3232
dependencies {
33-
implementation group: 'io.temporal', name: 'temporal-sdk', version: '1.0.7'
34-
implementation group: 'commons-configuration', name: 'commons-configuration', version: '20041012.002804'
33+
implementation group: 'io.temporal', name: 'temporal-sdk', version: '1.0.9'
3534
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
35+
implementation group: 'commons-configuration', name: 'commons-configuration', version: '1.10'
3636

37-
testImplementation group: 'io.temporal', name: 'temporal-testing', version: '1.0.7'
37+
testImplementation group: 'io.temporal', name: 'temporal-testing', version: '1.0.9'
3838
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
3939
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.10.0'
4040
testImplementation group: 'org.powermock', name: 'powermock-api-mockito2', version: '2.0.9'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/test/java/io/temporal/samples/fileprocessing/FileProcessingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class FileProcessingTest {
5757
}
5858
}
5959

60-
@Rule public Timeout globalTimeout = Timeout.seconds(2);
60+
@Rule public Timeout globalTimeout = Timeout.seconds(5);
6161

6262
/** Prints a history of the workflow under test in case of a test failure. */
6363
@Rule

src/test/java/io/temporal/samples/hello/HelloAsyncActivityCompletionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
/** Unit test for {@link HelloAsyncActivityCompletion}. Doesn't use an external Temporal service. */
4444
public class HelloAsyncActivityCompletionTest {
4545

46-
@Rule public Timeout globalTimeout = Timeout.seconds(2);
46+
@Rule public Timeout globalTimeout = Timeout.seconds(3);
4747

4848
/** Prints a history of the workflow under test in case of a test failure. */
4949
@Rule

src/test/java/io/temporal/samples/hello/HelloAsyncLambdaTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
/** Unit test for {@link HelloAsyncLambda}. Doesn't use an external Temporal service. */
4343
public class HelloAsyncLambdaTest {
4444

45-
@Rule public Timeout globalTimeout = Timeout.seconds(2);
45+
@Rule public Timeout globalTimeout = Timeout.seconds(3);
4646

4747
/** Prints a history of the workflow under test in case of a test failure. */
4848
@Rule

src/test/java/io/temporal/samples/hello/HelloAsyncTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
/** Unit test for {@link HelloAsync}. Doesn't use an external Temporal service. */
4444
public class HelloAsyncTest {
4545

46-
@Rule public Timeout globalTimeout = Timeout.seconds(2);
46+
@Rule public Timeout globalTimeout = Timeout.seconds(3);
4747

4848
/** Prints a history of the workflow under test in case of a test failure. */
4949
@Rule

src/test/java/io/temporal/samples/hello/HelloCronTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/** Unit test for {@link HelloCron}. Doesn't use an external Temporal service. */
4646
public class HelloCronTest {
4747

48-
@Rule public Timeout globalTimeout = Timeout.seconds(2);
48+
@Rule public Timeout globalTimeout = Timeout.seconds(3);
4949

5050
/** Prints a history of the workflow under test in case of a test failure. */
5151
@Rule

src/test/java/io/temporal/samples/hello/HelloPeriodicTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/** Unit test for {@link HelloPeriodic}. Doesn't use an external Temporal service. */
5252
public class HelloPeriodicTest {
5353

54-
@Rule public Timeout globalTimeout = Timeout.seconds(2);
54+
@Rule public Timeout globalTimeout = Timeout.seconds(3);
5555

5656
/** Prints a history of the workflow under test in case of a test failure. */
5757
@Rule

0 commit comments

Comments
 (0)