Skip to content

Commit c4581d9

Browse files
committed
Update to Gradle 8.10.2
Closes gh-930
1 parent 5b8f2f7 commit c4581d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

buildSrc/src/main/groovy/io/spring/gradle/convention/TestsConfigurationPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class TestsConfigurationPlugin implements Plugin<Project> {
4343
}
4444

4545
project.tasks.create('testJar', Jar) {
46-
classifier = 'test'
46+
archiveClassifier = 'test'
4747
from project.sourceSets.test.output
4848
}
4949

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

samples/boot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'org.springframework.boot' version '3.2.10'
33
id 'io.spring.dependency-management'
4-
id 'java'
4+
id 'java-library'
55
}
66

77
repositories {

0 commit comments

Comments
 (0)