Place Xerces in tests classpath to prevent ant 1.6.1 load of Crimson parser.
Crimson parser error messages cause failures in ConfigurationLoaderTest.
This commit is contained in:
parent
e9bdc54e42
commit
83bc4ecbc4
|
|
@ -8,6 +8,8 @@
|
|||
|
||||
<property name="ant.jar" value="${ant.home}/lib/ant.jar" />
|
||||
<property name="crimson.jar" value="${ant.home}/lib/crimson.jar" />
|
||||
<property name="xerces.jar" value="${ant.home}/lib/xercesImpl.jar" />
|
||||
<property name="xml-apis.jar" value="${ant.home}/lib/xml-apis.jar" />
|
||||
<property name="antlr.jar" value="lib/antlr.jar" />
|
||||
<property name="velocity.jar" value="lib/velocity-dep-1.4.jar" />
|
||||
<property name="jdom.jar" value="lib/jdom-b9.jar" />
|
||||
|
|
@ -62,6 +64,8 @@
|
|||
<path id="tests.runpath">
|
||||
<pathelement location="target/tests" />
|
||||
<pathelement path="${clover.lib}/clover.jar"/>
|
||||
<pathelement path="${xerces.jar}"/>
|
||||
<pathelement path="${xml-apis.jar}"/>
|
||||
<path refid="tests.buildpath" />
|
||||
</path>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue