Upgrade to the latest Framework 6.0.x release

Closes gh-40929
This commit is contained in:
Andy Wilkinson 2024-05-28 16:52:00 +01:00
parent 4bb9197a14
commit 5ee0580339
5 changed files with 5 additions and 4 deletions

View File

@ -14,6 +14,7 @@ kotlinVersion=1.9.24
mavenVersion=3.9.4
nativeBuildToolsVersion=0.9.28
springFrameworkVersion=6.1.8
springFramework60xVersion=6.0.21
tomcatVersion=10.1.24
kotlin.stdlib.default.dependency=false

View File

@ -17,7 +17,7 @@ configurations.all {
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
// multi-version jar files with bytecode in META-INF/versions/21
if (dependency.requested.group.equals("org.springframework")) {
dependency.useVersion("6.0.10")
dependency.useVersion("$springFramework60xVersion")
}
// We manage the version of commons-compress here rather than
// in spring-boot-parent to minimize conflicts with Testcontainers

View File

@ -53,7 +53,7 @@ configurations {
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
// multi-version jar files with bytecode in META-INF/versions/21
if (dependency.requested.group.equals("org.springframework")) {
dependency.useVersion("6.0.10")
dependency.useVersion("$springFramework60xVersion")
}
// We manage the version of commons-compress here rather than
// in spring-boot-parent to minimize conflicts with Testcontainers

View File

@ -27,7 +27,7 @@ configurations {
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
// multi-version jar files with bytecode in META-INF/versions/21
if (dependency.requested.group.equals("org.springframework")) {
dependency.useVersion("6.0.10")
dependency.useVersion("$springFramework60xVersion")
}
// We manage the version of commons-compress here rather than
// in spring-boot-parent to minimize conflicts with Testcontainers

View File

@ -22,7 +22,7 @@ configurations {
// Downgrade Spring Framework as Gradle cannot cope with 6.1.0-M1's
// multi-version jar files with bytecode in META-INF/versions/21
if (dependency.requested.group.equals("org.springframework")) {
dependency.useVersion("6.0.10")
dependency.useVersion("$springFramework60xVersion")
}
}
}