diff --git a/examples/end-to-end/build.gradle.kts b/examples/end-to-end/build.gradle.kts index 11838218d..e69e1e9e1 100644 --- a/examples/end-to-end/build.gradle.kts +++ b/examples/end-to-end/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation("software.amazon.smithy.java:client-core:$smithyJavaVersion") // Test dependencies - testImplementation("org.junit.jupiter:junit-jupiter:6.0.1") + testImplementation("org.junit.jupiter:junit-jupiter:6.0.2") testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/examples/event-streaming-client/build.gradle.kts b/examples/event-streaming-client/build.gradle.kts index 4c898197e..406ff3b43 100644 --- a/examples/event-streaming-client/build.gradle.kts +++ b/examples/event-streaming-client/build.gradle.kts @@ -12,7 +12,7 @@ dependencies { implementation("software.amazon.smithy.java:client-core:$smithyJavaVersion") // Test dependencies - testImplementation("org.junit.jupiter:junit-jupiter:6.0.1") + testImplementation("org.junit.jupiter:junit-jupiter:6.0.2") testRuntimeOnly("org.junit.platform:junit-platform-launcher") } diff --git a/examples/restjson-client/build.gradle.kts b/examples/restjson-client/build.gradle.kts index ebf97a4ba..8ac15bf35 100644 --- a/examples/restjson-client/build.gradle.kts +++ b/examples/restjson-client/build.gradle.kts @@ -13,7 +13,7 @@ dependencies { api("software.amazon.smithy.java:aws-client-restjson:$smithyJavaVersion") // Test dependencies - testImplementation("org.junit.jupiter:junit-jupiter:6.0.1") + testImplementation("org.junit.jupiter:junit-jupiter:6.0.2") testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation(libs.assertj.core) } diff --git a/examples/standalone-types/build.gradle.kts b/examples/standalone-types/build.gradle.kts index 5f2967e20..18e974ec3 100644 --- a/examples/standalone-types/build.gradle.kts +++ b/examples/standalone-types/build.gradle.kts @@ -12,7 +12,7 @@ dependencies { api("software.amazon.smithy.java:framework-errors:$smithyJavaVersion") testImplementation("org.hamcrest:hamcrest:3.0") - testImplementation("org.junit.jupiter:junit-jupiter:6.0.1") + testImplementation("org.junit.jupiter:junit-jupiter:6.0.2") testRuntimeOnly("org.junit.platform:junit-platform-launcher") testImplementation("org.assertj:assertj-core:3.27.6") } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 978c203ef..56c1e1712 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -junit5 = "6.0.1" +junit5 = "6.0.2" hamcrest = "3.0" smithy = "1.65.0" jmh = "0.7.3" @@ -11,7 +11,7 @@ assertj = "3.27.6" jackson = "3.0.3" netty = "4.2.9.Final" dep-analysis = "3.5.1" -aws-sdk = "2.41.0" +aws-sdk = "2.41.3" osdetector = "1.7.3" accp = "2.4.1" # Amazon Corretto Crypto Provider jreleaser = "1.21.0" diff --git a/logging/build.gradle.kts b/logging/build.gradle.kts index 3f89686d1..de0478bac 100644 --- a/logging/build.gradle.kts +++ b/logging/build.gradle.kts @@ -27,7 +27,7 @@ val jclTestConfiguration: Configuration by configurations.creating { // These are declared here instead of the version catalog because we don't want other modules to depend on them. val log4j2 = "2.25.3" val slf4j = "2.0.17" -val logBack = "1.5.23" +val logBack = "1.5.24" val jcl = "1.3.5" dependencies {