From db97e72c9495062dfbc6421f49af9cf6cb482ea6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 17:04:55 +0000 Subject: [PATCH 1/2] chore(deps): bump com.diffplug.spotless from 8.0.0 to 8.1.0 Bumps com.diffplug.spotless from 8.0.0 to 8.1.0. --- updated-dependencies: - dependency-name: com.diffplug.spotless dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- examples/build.gradle.kts | 2 +- lib/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index ccb0798..5502bc1 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -9,7 +9,7 @@ plugins { id("application") id("checkstyle") id("pmd") - id("com.diffplug.spotless") version "8.0.0" + id("com.diffplug.spotless") version "8.1.0" } dependencies { diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 498e9fe..44601cb 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -9,7 +9,7 @@ plugins { id("checkstyle") id("jacoco") id("pmd") - id("com.diffplug.spotless") version "8.0.0" + id("com.diffplug.spotless") version "8.1.0" id("com.vanniktech.maven.publish") version "0.35.0" id("signing") } From 0a9c877189d587d0f1f0669e1baa5ee97f1d38a3 Mon Sep 17 00:00:00 2001 From: Sebastian Veit Date: Mon, 22 Dec 2025 18:11:44 +0100 Subject: [PATCH 2/2] style: adapt spotless klint version Spotless 8.1.0 bundles a default ktlint version of 1.8.0. Signed-off-by: Sebastian Veit --- lib/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 44601cb..a58296f 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -98,7 +98,7 @@ spotless { // Also format Kotlin/Gradle files kotlin { // Use ktlint for Kotlin formatting - ktlint("0.50.0") + ktlint() // License header for Kotlin files licenseHeaderFile("$rootDir/config/license-header.txt", "(^(?![\\/ ]\\*).*$)")