Upgrade to Spring Framework 6.1.0-M1
Closes gh-35977 Closes gh-35980
This commit is contained in:
@@ -17,6 +17,17 @@ configurations {
|
||||
extendsFrom dependencyManagement
|
||||
transitive = false
|
||||
}
|
||||
all {
|
||||
resolutionStrategy {
|
||||
eachDependency { dependency ->
|
||||
// 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")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
Reference in New Issue
Block a user