mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
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:
@@ -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+.
|
||||
|
||||
Reference in New Issue
Block a user