From 52d3422380176b3302d4fbebbefa8bfa9f076861 Mon Sep 17 00:00:00 2001 From: Zach Daniels Date: Mon, 28 Oct 2024 18:56:36 -0500 Subject: [PATCH 1/2] update buildSrc Toolchain to Java 11 --- buildSrc/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 516055e74..56523921b 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -6,7 +6,7 @@ group = "com.hivemq" java { toolchain { - languageVersion.set(JavaLanguageVersion.of(8)) + languageVersion.set(JavaLanguageVersion.of(11)) } } From 1ccef83f799ad5366c86c4f6935412dd8ea61a87 Mon Sep 17 00:00:00 2001 From: Zach Daniels Date: Mon, 28 Oct 2024 18:57:06 -0500 Subject: [PATCH 2/2] update wiremock to version 3.9.2 --- build.gradle.kts | 2 +- gradle/libs.versions.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5ec7c6413..601587d5b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -151,7 +151,7 @@ dependencies { testImplementation(libs.shrinkwrap.api) testRuntimeOnly(libs.shrinkwrap.impl) testImplementation(libs.byteBuddy) - testImplementation(libs.wiremock.jre8.standalone) + testImplementation(libs.wiremock.standalone) testImplementation(libs.javassist) testImplementation(libs.awaitility) testImplementation(libs.stefanBirkner.systemRules) { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 5ba732d4e..ec1820ae6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -29,7 +29,7 @@ rocksdb = "8.3.3" shrinkwrap = "1.2.6" slf4j = "2.0.16" stefanBirkner-systemRules = "1.19.0" -wiremock = "3.0.1" +wiremock = "3.9.2" xodus = "1.2.3" zeroAllocationHashing = "0.16" @@ -73,7 +73,7 @@ shrinkwrap-api = { module = "org.jboss.shrinkwrap:shrinkwrap-api", version.ref = shrinkwrap-impl = { module = "org.jboss.shrinkwrap:shrinkwrap-impl-base", version.ref = "shrinkwrap" } slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" } stefanBirkner-systemRules = { module = "com.github.stefanbirkner:system-rules", version.ref = "stefanBirkner-systemRules" } -wiremock-jre8-standalone = { module = "com.github.tomakehurst:wiremock-jre8-standalone", version.ref = "wiremock" } +wiremock-standalone = { module = "org.wiremock:wiremock-standalone", version.ref = "wiremock" } xodus-environment = { module = "org.jetbrains.xodus:xodus-environment", version.ref = "xodus" } xodus-openApi = { module = "org.jetbrains.xodus:xodus-openAPI", version.ref = "xodus" } zeroAllocationHashing = { module = "net.openhft:zero-allocation-hashing", version.ref = "zeroAllocationHashing" }