From c6c93390652baf31c661dc431f88b5de9f3cb25a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Sep 2025 19:35:21 +0000 Subject: [PATCH 1/2] Update dependency com.diffplug.spotless:spotless-plugin-gradle to v8 --- gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 2343d6e913..f624086528 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -82,7 +82,7 @@ pluginz-dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.re pluginz-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } pluginz-kotlinSerialization = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "kotlin" } pluginz-shadow = { module = "com.github.johnrengelman:shadow", version = "8.1.1" } -pluginz-spotless = { module = "com.diffplug.spotless:spotless-plugin-gradle", version = "7.2.1" } +pluginz-spotless = { module = "com.diffplug.spotless:spotless-plugin-gradle", version = "8.0.0" } pluginz-buildConfig = { module = "com.github.gmazzo:gradle-buildconfig-plugin", version = "3.1.0" } protobuf-gradlePlugin = { module = "com.google.protobuf:protobuf-gradle-plugin", version.ref = "protobufGradlePlugin" } protobuf-java = { module = "com.google.protobuf:protobuf-java", version.ref = "protobuf" } From 6d8c1060e537dade41a7c54cdc9ea175c3875eea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Quenaudon?= Date: Thu, 25 Sep 2025 12:50:48 +0100 Subject: [PATCH 2/2] JvmTarget to 17 for the build logic --- build-support/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-support/build.gradle.kts b/build-support/build.gradle.kts index ede5f4dee1..d2a8453098 100644 --- a/build-support/build.gradle.kts +++ b/build-support/build.gradle.kts @@ -76,13 +76,13 @@ allprojects { } tasks.withType().configureEach { - sourceCompatibility = JavaVersion.VERSION_11.toString() - targetCompatibility = JavaVersion.VERSION_11.toString() + sourceCompatibility = JavaVersion.VERSION_17.toString() + targetCompatibility = JavaVersion.VERSION_17.toString() } tasks.withType().configureEach { compilerOptions { - jvmTarget.set(JvmTarget.JVM_11) + jvmTarget.set(JvmTarget.JVM_17) freeCompilerArgs.add("-Xjvm-default=all") } }