Skip to content

Commit cf447e3

Browse files
committed
Merge branch '3.2.x'
Closes spring-projectsgh-40931
2 parents d26881a + 5ee0580 commit cf447e3

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ kotlinVersion=1.9.24
1515
mavenVersion=3.9.4
1616
nativeBuildToolsVersion=0.10.2
1717
springFrameworkVersion=6.1.8
18+
springFramework60xVersion=6.0.21
1819
tomcatVersion=10.1.24
1920
snakeYamlVersion=2.2
2021

spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ configurations.all {
1717
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
1818
// multi-version jar files with bytecode in META-INF/versions/21
1919
if (dependency.requested.group.equals("org.springframework")) {
20-
dependency.useVersion("6.0.10")
20+
dependency.useVersion("$springFramework60xVersion")
2121
}
2222
}
2323
}

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ configurations {
5353
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
5454
// multi-version jar files with bytecode in META-INF/versions/21
5555
if (dependency.requested.group.equals("org.springframework")) {
56-
dependency.useVersion("6.0.10")
56+
dependency.useVersion("$springFramework60xVersion")
5757
}
5858
}
5959
}

spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ configurations {
2727
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
2828
// multi-version jar files with bytecode in META-INF/versions/21
2929
if (dependency.requested.group.equals("org.springframework")) {
30-
dependency.useVersion("6.0.10")
30+
dependency.useVersion("$springFramework60xVersion")
3131
}
3232
}
3333
}

spring-boot-system-tests/spring-boot-image-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ configurations {
2222
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
2323
// multi-version jar files with bytecode in META-INF/versions/21
2424
if (dependency.requested.group.equals("org.springframework")) {
25-
dependency.useVersion("6.0.10")
25+
dependency.useVersion("$springFramework60xVersion")
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)