8000 Update Java SDK (#636) · temporalio/samples-java@35ebce6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 35ebce6

Browse files
Update Java SDK (#636)
1 parent 92350ae commit 35ebce6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ subprojects {
2828
ext {
2929
otelVersion = '1.30.1'
3030
otelVersionAlpha = "${otelVersion}-alpha"
31-
javaSDKVersion = '1.23.2'
31+
javaSDKVersion = '1.24.0'
3232
camelVersion = '3.22.1'
3333
jarVersion = '1.0.0'
3434
}

springboot-basic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
implementation "org.springframework.boot:spring-boot-starter-web"
55
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
66
implementation "org.springframework.boot:spring-boot-starter-actuator"
7-
implementation "io.temporal:temporal-spring-boot-starter-alpha:$javaSDKVersion"
7+
implementation "io.temporal:temporal-spring-boot-starter:$javaSDKVersion"
88
testImplementation "org.springframework.boot:spring-boot-starter-test"
99
runtimeOnly "io.micrometer:micrometer-registry-prometheus"
1010
dependencies {

springboot-basic/src/main/resources/application-tc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ spring.temporal:
66
key-file: /path/to/key.key
77
cert-chain-file: /path/to/cert.pem
88

9-
# more configuration options https://github.com/temporalio/sdk-java/tree/master/temporal-spring-boot-autoconfigure-alpha#mtls
9+
# more configuration options https://github.com/temporalio/sdk-java/tree/master/temporal-spring-boot-autoconfigure#mtls

springboot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
implementation "org.springframework.kafka:spring-kafka"
99
// we set this as impl depends to use embedded kafka in samples not just tests
1010
implementation "org.springframework.kafka:spring-kafka-test"
11-
implementation "io.temporal:temporal-spring-boot-starter-alpha:$javaSDKVersion"
11+
implementation "io.temporal:temporal-spring-boot-starter:$javaSDKVersion"
1212
implementation "org.apache.camel.springboot:camel-spring-boot-starter:$camelVersion"
1313
implementation "org.apache.camel.springboot:camel-servlet-starter:$camelVersion"
1414
runtimeOnly "io.micrometer:micrometer-registry-prometheus"

springboot/src/main/resources/application-tc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ spring.temporal:
66
key-file: /path/to/key.key
77
cert-chain-file: /path/to/cert.pem
88

9-
# more configuration options https://github.com/temporalio/sdk-java/tree/master/temporal-spring-boot-autoconfigure-alpha#mtls
9+
# more configuration options https://github.com/temporalio/sdk-java/tree/master/temporal-spring-boot-autoconfigure#mtls

0 commit comments

Comments
 (0)
0