Skip to content

Commit 9aa1611

Browse files
Bump spotless
1 parent 308bca2 commit 9aa1611

File tree

17 files changed

+28
-26
lines changed

17 files changed

+28
-26
lines changed

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id("datadog.dump-hanged-test")
99
id("datadog.ci-jobs")
1010

11-
id("com.diffplug.spotless") version "6.13.0"
11+
id("com.diffplug.spotless") version "8.0.0"
1212
id("com.github.spotbugs") version "6.4.4"
1313
id("de.thetaphi.forbiddenapis") version "3.10"
1414
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
@@ -35,7 +35,7 @@ with(extensions["spotlessPredeclare"] as SpotlessExtension) {
3535
removeUnusedImports()
3636

3737
// This is the last Google Java Format version that supports Java 8
38-
googleJavaFormat("1.7")
38+
googleJavaFormat("1.29.0")
3939
}
4040
groovyGradle {
4141
greclipse()
@@ -44,13 +44,13 @@ with(extensions["spotlessPredeclare"] as SpotlessExtension) {
4444
greclipse()
4545
}
4646
kotlinGradle {
47-
ktlint("0.41.0")
47+
ktlint("1.7.1")
4848
}
4949
kotlin {
50-
ktlint("0.41.0")
50+
ktlint("1.7.1")
5151
}
5252
scala {
53-
scalafmt("2.7.5")
53+
scalafmt("3.9.10")
5454
}
5555
}
5656
apply(from = rootDir.resolve("gradle/spotless.gradle"))

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
`java-gradle-plugin`
44
`kotlin-dsl`
55
`jvm-test-suite`
6-
id("com.diffplug.spotless") version "6.13.0"
6+
id("com.diffplug.spotless") version "8.0.0"
77
}
88

99
java {

buildSrc/call-site-instrumentation-plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
java
33
groovy
4-
id("com.diffplug.spotless") version "6.13.0"
4+
id("com.diffplug.spotless") version "8.0.0"
55
id("com.gradleup.shadow") version "8.3.6"
66
}
77

@@ -18,7 +18,7 @@ spotless {
1818
// ignore embedded test projects
1919
targetExclude("src/test/resources/**")
2020
// This is the last Google Java Format version that supports Java 8
21-
googleJavaFormat("1.7")
21+
googleJavaFormat("1.29.0")
2222
}
2323
}
2424

dd-smoke-tests/armeria-grpc/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
plugins {
88
id 'application'
99
id 'java'
10-
id 'com.diffplug.spotless' version '6.13.0'
10+
id 'com.diffplug.spotless' version '8.0.0'
1111
id 'com.gradleup.shadow' version '8.3.6'
1212
id 'com.google.protobuf' version '0.9.3'
1313
}

dd-smoke-tests/kafka-3/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
id 'org.springframework.boot' version '3.2.2'
44
id 'io.spring.dependency-management' version '1.1.4'
5-
id 'com.diffplug.spotless' version '6.13.0'
5+
id 'com.diffplug.spotless' version '8.0.0'
66
}
77

88
java {

dd-smoke-tests/quarkus-native/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
33
id 'io.quarkus'
4-
id 'com.diffplug.spotless' version '6.13.0'
4+
id 'com.diffplug.spotless' version '8.0.0'
55
}
66

77
def sharedRootDir = "$rootDir/../../../"

dd-smoke-tests/quarkus/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
33
id 'io.quarkus'
4-
id 'com.diffplug.spotless' version '6.13.0'
4+
id 'com.diffplug.spotless' version '8.0.0'
55
}
66

77
def sharedRootDir = "$rootDir/../../../"

dd-smoke-tests/rum/wildfly-15/rum-ear/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'java'
33
id 'ear'
4-
id 'com.diffplug.spotless' version '6.13.0'
4+
id 'com.diffplug.spotless' version '8.0.0'
55
}
66

77
def sharedRootDir = "$rootDir/../../../../"

dd-smoke-tests/spring-boot-2.7-webflux/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
id 'org.springframework.boot' version '2.7.4'
44
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
5-
id 'com.diffplug.spotless' version '6.13.0'
5+
id 'com.diffplug.spotless' version '8.0.0'
66
}
77

88
def sharedRootDir = "$rootDir/../../../"

dd-smoke-tests/spring-boot-3.0-native/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'org.springframework.boot' version '3.0.0'
44
id 'io.spring.dependency-management' version '1.0.14.RELEASE'
55
id 'org.graalvm.buildtools.native' version '0.9.28'
6-
id 'com.diffplug.spotless' version '6.13.0'
6+
id 'com.diffplug.spotless' version '8.0.0'
77
}
88

99
def sharedRootDir = "$rootDir/../../../"

0 commit comments

Comments
 (0)