diff --git a/build-logic/jvm/build.gradle.kts b/build-logic/jvm/build.gradle.kts index 022166ae..a35221c5 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.8.0") + implementation("com.diffplug.spotless:com.diffplug.spotless.gradle.plugin:8.10.0") implementation("com.github.vlsi.gradle-extensions:com.github.vlsi.gradle-extensions.gradle.plugin:4.0.0") 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 eec2e64b..123a8e75 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { // 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.8.0" apply false + id("com.diffplug.spotless") version "8.10.0" apply false } val calculatedVersion = property("version") as String + (if (hasProperty("release")) "" else "-SNAPSHOT")