Exclude stax test dependency

Exclude transitive stax 1.0 dependency to prevent compile time
eclipse errors.
This commit is contained in:
Phillip Webb 2013-01-10 19:01:40 -08:00
parent 18bf860c27
commit a0e5394203
1 changed files with 3 additions and 1 deletions

View File

@ -235,7 +235,9 @@ project("spring-core") {
optional("net.sf.jopt-simple:jopt-simple:3.0")
optional("log4j:log4j:1.2.17")
testCompile("xmlunit:xmlunit:1.3")
testCompile("org.codehaus.woodstox:wstx-asl:3.2.7")
testCompile("org.codehaus.woodstox:wstx-asl:3.2.7") {
exclude group: "stax", module: "stax-api"
}
}
jar {