From 594448adcdb55cbaf2b2a4d05cbaea5af2191bea Mon Sep 17 00:00:00 2001 From: Tom Wheeler Date: Wed, 5 Nov 2025 11:17:44 -0600 Subject: [PATCH] updated SDK and project dependencies to latest versions --- app/build.gradle | 8 ++++---- app/pom.xml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 1b23e93..986f6bb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,12 +17,12 @@ repositories { // @@@SNIPSTART hello-world-project-template-java-gradle-dependencies dependencies { - implementation group: 'io.temporal', name: 'temporal-sdk', version: '1.18.2' - implementation group: 'org.slf4j', name: 'slf4j-nop', version: '2.0.6' + implementation group: 'io.temporal', name: 'temporal-sdk', version: '1.31.0' + implementation group: 'org.slf4j', name: 'slf4j-nop', version: '2.0.17' - testImplementation group: 'io.temporal', name: 'temporal-testing', version: '1.18.2' + testImplementation group: 'io.temporal', name: 'temporal-testing', version: '1.31.0' testImplementation group: 'junit', name: 'junit', version: '4.13.2' - testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.1.1' + testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0' } // @@@SNIPEND diff --git a/app/pom.xml b/app/pom.xml index 56cf615..3e59dbf 100644 --- a/app/pom.xml +++ b/app/pom.xml @@ -27,33 +27,33 @@ io.temporal temporal-sdk - 1.19.0 + 1.31.0 org.slf4j slf4j-nop - 2.0.6 + 2.0.17 io.temporal temporal-testing - 1.19.0 + 1.31.0 test junit junit - 4.11 + 4.13.2 test org.mockito mockito-core - 5.1.1 + 5.20.0 test