Raise minimum supported version of Gradle

Closes gh-41180
This commit is contained in:
Andy Wilkinson
2024-06-21 14:52:22 +01:00
parent 63c6b1ee72
commit 28a887ad0f
9 changed files with 5 additions and 114 deletions

View File

@@ -11,22 +11,6 @@ configurations {
providedRuntime {
extendsFrom dependencyManagement
}
all {
resolutionStrategy {
eachDependency { dependency ->
// Downgrade Jackson as Gradle cannot cope with 2.15.0's multi-version
// jar files with bytecode in META-INF/versions/19
if (dependency.requested.group.startsWith("com.fasterxml.jackson")) {
dependency.useVersion("2.14.2")
}
// 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("$springFramework60xVersion")
}
}
}
}
}
task syncMavenRepository(type: Sync) {