Skip to content

Commit

Permalink
Update Java SDK (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns authored Jun 27, 2024
1 parent 92350ae commit 35ebce6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ subprojects {
ext {
otelVersion = '1.30.1'
otelVersionAlpha = "${otelVersion}-alpha"
javaSDKVersion = '1.23.2'
javaSDKVersion = '1.24.0'
camelVersion = '3.22.1'
jarVersion = '1.0.0'
}
Expand Down
2 changes: 1 addition & 1 deletion springboot-basic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "org.springframework.boot:spring-boot-starter-actuator"
implementation "io.temporal:temporal-spring-boot-starter-alpha:$javaSDKVersion"
implementation "io.temporal:temporal-spring-boot-starter:$javaSDKVersion"
testImplementation "org.springframework.boot:spring-boot-starter-test"
runtimeOnly "io.micrometer:micrometer-registry-prometheus"
dependencies {
Expand Down
2 changes: 1 addition & 1 deletion springboot-basic/src/main/resources/application-tc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ spring.temporal:
key-file: /path/to/key.key
cert-chain-file: /path/to/cert.pem

# more configuration options https://github.com/temporalio/sdk-java/tree/master/temporal-spring-boot-autoconfigure-alpha#mtls
# more configuration options https://github.com/temporalio/sdk-java/tree/master/temporal-spring-boot-autoconfigure#mtls
2 changes: 1 addition & 1 deletion springboot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation "org.springframework.kafka:spring-kafka"
// we set this as impl depends to use embedded kafka in samples not just tests
implementation "org.springframework.kafka:spring-kafka-test"
implementation "io.temporal:temporal-spring-boot-starter-alpha:$javaSDKVersion"
implementation "io.temporal:temporal-spring-boot-starter:$javaSDKVersion"
implementation "org.apache.camel.springboot:camel-spring-boot-starter:$camelVersion"
implementation "org.apache.camel.springboot:camel-servlet-starter:$camelVersion"
runtimeOnly "io.micrometer:micrometer-registry-prometheus"
Expand Down
2 changes: 1 addition & 1 deletion springboot/src/main/resources/application-tc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ spring.temporal:
key-file: /path/to/key.key
cert-chain-file: /path/to/cert.pem

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

0 comments on commit 35ebce6

Please sign in to comment.