Browse Source

Exclude stax test dependency

Exclude transitive stax 1.0 dependency to prevent compile time
eclipse errors.
pull/214/merge
Phillip Webb 13 years ago
parent
commit
a0e5394203
  1. 4
      build.gradle

4
build.gradle

@ -235,7 +235,9 @@ project("spring-core") { @@ -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 {

Loading…
Cancel
Save