Skip to content

Commit 9907b21

Browse files
committed
Upgrade gradle to v8.5
Signed-off-by: Bradley Bown <[email protected]>
1 parent 5173684 commit 9907b21

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'idea'
44
id 'org.sonarqube' version '3.4.0.2513'
55
id 'jacoco'
6-
id 'com.diffplug.gradle.spotless' version '4.5.1'
6+
id 'com.diffplug.spotless' version '6.16.0'
77
id 'io.codearte.nexus-staging' version '0.22.0'
88
id 'de.marcphilipp.nexus-publish' version '0.4.0'
99
id 'de.undercouch.download' version '4.1.1'

gradle/jacoco/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jacocoTestReport {
1414
}
1515
dependsOn test
1616
reports {
17-
xml.enabled true
18-
html.enabled false
19-
csv.enabled false
17+
xml.required = true
18+
html.required = false
19+
csv.required = false
2020
xml.destination file("${buildDir}/reports/jacoco.xml")
2121
}
2222
}

gradle/spotless/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
apply plugin: 'com.diffplug.gradle.spotless'
2+
apply plugin: 'com.diffplug.spotless'
33
apply plugin: "de.undercouch.download"
44

55
task downloadJavaLicense(type: Download) {
@@ -39,7 +39,7 @@ spotless {
3939
exclude '**/.gradle/**'
4040
exclude '**/build/install/**'
4141
}
42-
ktlint('0.31.0')
42+
ktlint('0.47.0')
4343
trimTrailingWhitespace()
4444
endWithNewline()
4545
licenseHeaderFile "$rootDir/gradle/spotless/java.license"

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
33
distributionBase=GRADLE_USER_HOME
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)