Remove transitive dependency on Java EE 8 JAX-B

Closes gh-27754
This commit is contained in:
liuzhifei 2021-12-01 17:22:32 +08:00 committed by Rossen Stoyanchev
parent 5589e6ceed
commit 32359c52b4
1 changed files with 3 additions and 1 deletions

View File

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