From: <bo...@us...> - 2009-04-23 03:49:11
|
Revision: 295 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=295&view=rev Author: bodewig Date: 2009-04-23 03:48:58 +0000 (Thu, 23 Apr 2009) Log Message: ----------- add junit Modified Paths: -------------- trunk/xmlunit/build.xml Added Paths: ----------- trunk/xmlunit/lib/ trunk/xmlunit/lib/junit-3.8.2.jar Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2009-04-22 05:29:46 UTC (rev 294) +++ trunk/xmlunit/build.xml 2009-04-23 03:48:58 UTC (rev 295) @@ -62,7 +62,6 @@ <!-- some library paths --> <!-- where is JAXP? property name="${xmlxsl.lib}" location="."/ --> - <!-- where is JUnit? property name="${junit.lib}" location="."/ --> <!-- Docbook related properties, macros and targets --> <import file="docbook.xml"/> @@ -108,8 +107,8 @@ debug="${javac.debug}" target="${javac.target}" source="${javac.source}"> <classpath> <pathelement location="${xmlxsl.lib}"/> - <pathelement location="${junit.lib}"/> <pathelement path="${java.class.path}"/> + <fileset dir="lib" includes="*.jar"/> </classpath> <exclude name="**/jaxp13/**" unless="jaxp13+"/> <exclude name="**/*XPathRegexAssert.java" unless="regexp.present"/> @@ -119,8 +118,8 @@ <classpath> <pathelement location="${out.dir}"/> <pathelement location="${xmlxsl.lib}"/> - <pathelement location="${junit.lib}"/> <pathelement path="${java.class.path}"/> + <fileset dir="lib" includes="*.jar"/> </classpath> <exclude name="**/jaxp13/**" unless="jaxp13+"/> <exclude name="**/*XPathRegexAssert.java" unless="regexp.present"/> @@ -145,8 +144,8 @@ <pathelement location="${out.dir}"/> <pathelement location="${test.out.dir}"/> <pathelement location="${xmlxsl.lib}"/> - <pathelement location="${junit.lib}"/> <pathelement path="${java.class.path}"/> + <fileset dir="lib" includes="*.jar"/> </classpath> <formatter type="xml"/> <batchtest todir="${test.report.dir}"> @@ -283,7 +282,6 @@ <javac srcdir="src/user-guide" includes="org/" destdir="${userguide.out.dir}" source="1.3" target="1.2"> <classpath> - <pathelement location="${junit.lib}"/> <pathelement location="${out.dir}"/> </classpath> </javac> Added: trunk/xmlunit/lib/junit-3.8.2.jar =================================================================== (Binary files differ) Property changes on: trunk/xmlunit/lib/junit-3.8.2.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |