Skip to content

Commit 99cb6ba

Browse files
committed
Upgrade to Gradle 8.12
1 parent 2baf707 commit 99cb6ba

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ configure(allprojects) { project ->
2525
repositories {
2626
mavenCentral()
2727
maven {
28-
url "https://repo.spring.io/milestone"
28+
url = "https://repo.spring.io/milestone"
2929
content {
3030
// Netty 5 optional support
3131
includeGroup 'io.projectreactor.netty'
3232
}
3333
}
3434
if (version.contains('-')) {
35-
maven { url "https://repo.spring.io/milestone" }
35+
maven { url = "https://repo.spring.io/milestone" }
3636
}
3737
if (version.endsWith('-SNAPSHOT')) {
38-
maven { url "https://repo.spring.io/snapshot" }
38+
maven { url = "https://repo.spring.io/snapshot" }
3939
}
4040
}
4141
configurations.all {

framework-api/framework-api.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apply from: "${rootDir}/gradle/publications.gradle"
99

1010
repositories {
1111
maven {
12-
url "https://repo.spring.io/release"
12+
url = "https://repo.spring.io/release"
1313
}
1414
}
1515

@@ -87,7 +87,7 @@ tasks.register('schemaZip', Zip) {
8787
archiveClassifier.set("schema")
8888
description = "Builds -${archiveClassifier} archive containing all " +
8989
"XSDs for deployment at https://springframework.org/schema."
90-
duplicatesStrategy DuplicatesStrategy.EXCLUDE
90+
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
9191
moduleProjects.each { module ->
9292
def Properties schemas = new Properties();
9393

framework-docs/framework-docs.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ javadoc {
3737

3838
repositories {
3939
maven {
40-
url "https://repo.spring.io/release"
40+
url = "https://repo.spring.io/release"
4141
}
4242
}
4343

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

0 commit comments

Comments
 (0)