Raise minimum supported version of Gradle
Closes gh-41180
This commit is contained in:
@@ -6,23 +6,6 @@ plugins {
|
||||
|
||||
description = "Spring Boot Buildpack Platform"
|
||||
|
||||
configurations.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")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api("com.fasterxml.jackson.core:jackson-databind")
|
||||
api("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
||||
|
||||
Reference in New Issue
Block a user