Closes gh-27754
This commit is contained in:
Brian Clozel 2021-12-02 14:23:16 +01:00
parent 2d2db530b1
commit 24cb1def7d
2 changed files with 2 additions and 3 deletions

View File

@ -153,6 +153,7 @@ configure(allprojects) { project ->
dependency "org.mozilla:rhino:1.7.11" dependency "org.mozilla:rhino:1.7.11"
dependency("org.dom4j:dom4j:2.1.3") { dependency("org.dom4j:dom4j:2.1.3") {
exclude group: 'javax.xml.bind', name: "jaxb-api"
exclude group: "jaxen", name: "jaxen" exclude group: "jaxen", name: "jaxen"
exclude group: "net.java.dev.msv", name: "xsdlib" exclude group: "net.java.dev.msv", name: "xsdlib"
exclude group: "pull-parser", name: "pull-parser" exclude group: "pull-parser", name: "pull-parser"

View File

@ -45,9 +45,7 @@ dependencies {
testImplementation("org.apache.httpcomponents:httpclient") testImplementation("org.apache.httpcomponents:httpclient")
testImplementation("commons-io:commons-io") testImplementation("commons-io:commons-io")
testImplementation("org.mozilla:rhino") testImplementation("org.mozilla:rhino")
testImplementation("org.dom4j:dom4j") { testImplementation("org.dom4j:dom4j")
exclude group: 'javax.xml.bind', module: "jaxb-api"
}
testImplementation("jaxen:jaxen") testImplementation("jaxen:jaxen")
testImplementation("org.xmlunit:xmlunit-assertj") testImplementation("org.xmlunit:xmlunit-assertj")
testImplementation("org.xmlunit:xmlunit-matchers") testImplementation("org.xmlunit:xmlunit-matchers")