From 199102a414e1be46c4a51e28b223255258aa6e82 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 15:39:02 +0000 Subject: [PATCH] Update spotless to v8.6.0 Need to add spotless at root to avoid shared build service issue Add renovate config to group updates Signed-off-by: Appu --- build-logic/jvm/build.gradle.kts | 2 +- build.gradle.kts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/build-logic/jvm/build.gradle.kts b/build-logic/jvm/build.gradle.kts index 41f17141..f96d4d8a 100644 --- a/build-logic/jvm/build.gradle.kts +++ b/build-logic/jvm/build.gradle.kts @@ -9,7 +9,7 @@ repositories { dependencies { implementation(project(":basics")) implementation(project(":build-parameters")) - implementation("com.diffplug.spotless:com.diffplug.spotless.gradle.plugin:8.1.0") + implementation("com.diffplug.spotless:com.diffplug.spotless.gradle.plugin:8.6.0") implementation("com.github.vlsi.gradle-extensions:com.github.vlsi.gradle-extensions.gradle.plugin:3.0.2") implementation("de.thetaphi.forbiddenapis:de.thetaphi.forbiddenapis.gradle.plugin:3.10") implementation("org.jetbrains.kotlin:kotlin-gradle-plugin") diff --git a/build.gradle.kts b/build.gradle.kts index 87830230..af4e99fe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,6 +6,8 @@ plugins { id("com.gradleup.nmcp.aggregation") version "1.4.0" // The Kotlin Gradle plugin was loaded multiple times in different subprojects, which is not supported and may break the build. `embedded-kotlin` apply false + // The Spotless plugin uses a shared build service. Load it at the root project level to avoid classloader collision in subprojects. + id("com.diffplug.spotless") version "8.6.0" apply false } val calculatedVersion = property("version") as String + (if (hasProperty("release")) "" else "-SNAPSHOT")