Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-logic/jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading