Upgrade to Gradle 7.2

This commit upgrades Gradle to 7.2.
Gradle configuration names are updated accordingly.
This also upgrades Gradle build plugins.

See gh-26870
This commit is contained in:
Brian Clozel
2021-09-13 09:37:35 +02:00
parent 2db1e6daad
commit cecc0849a8
28 changed files with 527 additions and 490 deletions
+11 -11
View File
@@ -23,23 +23,23 @@ sourceSets {
}
dependencies {
compile(project(":spring-beans"))
compile(project(":spring-core"))
api(project(":spring-beans"))
api(project(":spring-core"))
optional("javax.xml.bind:jaxb-api")
optional("javax.activation:javax.activation-api")
optional("com.thoughtworks.xstream:xstream")
optional("org.jibx:jibx-run")
testCompile(project(":spring-context"))
testCompile(testFixtures(project(":spring-core")))
testCompile("org.ogce:xpp3")
testCompile("org.codehaus.jettison:jettison") {
testImplementation(project(":spring-context"))
testImplementation(testFixtures(project(":spring-core")))
testImplementation("org.ogce:xpp3")
testImplementation("org.codehaus.jettison:jettison") {
exclude group: "stax", module: "stax-api"
}
//testCompile(files(genJaxb.classesDir).builtBy(genJaxb))
testCompile("org.xmlunit:xmlunit-assertj")
testCompile("org.xmlunit:xmlunit-matchers")
testRuntime("com.sun.xml.bind:jaxb-core")
testRuntime("com.sun.xml.bind:jaxb-impl")
//testImplementation(files(genJaxb.classesDir).builtBy(genJaxb))
testImplementation("org.xmlunit:xmlunit-assertj")
testImplementation("org.xmlunit:xmlunit-matchers")
testRuntimeOnly("com.sun.xml.bind:jaxb-core")
testRuntimeOnly("com.sun.xml.bind:jaxb-impl")
}
// JiBX compiler is currently not compatible with JDK 9+.