Skip to content

Commit bf06d74

Browse files
committed
Merge branch '6.2.x'
2 parents 5b8e436 + 99cb6ba commit bf06d74

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
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

framework-platform/framework-platform.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dependencies {
1515
api(platform("io.rsocket:rsocket-bom:1.1.4"))
1616
api(platform("org.apache.groovy:groovy-bom:4.0.24"))
1717
api(platform("org.apache.logging.log4j:log4j-bom:3.0.0-beta3"))
18-
api(platform("org.assertj:assertj-bom:3.26.3"))
18+
api(platform("org.assertj:assertj-bom:3.27.0"))
1919
api(platform("org.eclipse.jetty:jetty-bom:12.0.15"))
2020
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.15"))
2121
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0"))

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)