From: <bo...@us...> - 2010-04-30 14:29:53
|
Revision: 374 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=374&view=rev Author: bodewig Date: 2010-04-30 14:29:47 +0000 (Fri, 30 Apr 2010) Log Message: ----------- stop Ant 1.8.0's whining about includeantruntime, make compile-userguide-examples actually work Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2010-04-30 13:55:59 UTC (rev 373) +++ trunk/xmlunit/build.xml 2010-04-30 14:29:47 UTC (rev 374) @@ -84,6 +84,7 @@ <target name="compile-core" depends="-init" description="compiles legacy sources and tests"> <javac srcdir="${src.dir}/java-core" destdir="${core.out.dir}" + includeantruntime="false" debug="${javac.debug}" target="${javac.target}" source="${javac.source}"> </javac> @@ -92,7 +93,8 @@ <target name="compile-legacy" depends="compile-core" description="compiles legacy sources and tests"> <javac srcdir="${src.dir}/java-legacy" destdir="${legacy.out.dir}" - debug="${javac.debug}" target="${javac.target}" source="${javac.source}"> + includeantruntime="false" debug="${javac.debug}" + target="${javac.target}" source="${javac.source}"> <classpath> <pathelement location="${core.out.dir}"/> <pathelement path="${java.class.path}"/> @@ -105,7 +107,8 @@ <target name="compile-legacy-tests" depends="compile-legacy" description="Compiles the test for XMLUnit 1.x"> <javac srcdir="${test.dir}/java-legacy" destdir="${legacytest.out.dir}" - debug="${javac.debug}" target="${javac.target}" source="${javac.source}"> + includeantruntime="false" debug="${javac.debug}" + target="${javac.target}" source="${javac.source}"> <classpath> <pathelement location="${core.out.dir}"/> <pathelement location="${legacy.out.dir}"/> @@ -119,6 +122,7 @@ <target name="compile-core-tests" depends="compile-core" description="Compiles the test for XMLUnit2"> <javac srcdir="${test.dir}/java-core" destdir="${coretest.out.dir}" + includeantruntime="false" debug="${javac.debug}" target="${javac.target}" source="${javac.source}"> <classpath> @@ -288,9 +292,11 @@ <target name="compile-userguide-examples" depends="compile"> <mkdir dir="${userguide.out.dir}"/> <javac srcdir="src/user-guide" includes="org/" - destdir="${userguide.out.dir}" source="1.3" target="1.2"> + includeantruntime="false" + destdir="${userguide.out.dir}" source="1.3" target="1.2"> <classpath> <pathelement location="${legacy.out.dir}"/> + <fileset dir="lib" includes="junit-3*.jar"/> </classpath> </javac> <delete dir="${userguide.out.dir}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bo...@us...> - 2011-01-25 09:49:40
|
Revision: 486 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=486&view=rev Author: bodewig Date: 2011-01-25 09:49:34 +0000 (Tue, 25 Jan 2011) Log Message: ----------- Gump target is no longer needed Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2010-09-24 10:52:22 UTC (rev 485) +++ trunk/xmlunit/build.xml 2011-01-25 09:49:34 UTC (rev 486) @@ -243,8 +243,6 @@ </copy> </target> - <target name="Gump" depends="test,jar"/> - <target name="bindist" depends="jar,test,docs"> <zip zipfile="${dist.dir}/xmlunit-${xmlunit.version}-bin.zip"> <zipfileset prefix="xmlunit-${xmlunit.version}/lib" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bo...@us...> - 2014-12-04 17:39:23
|
Revision: 566 http://sourceforge.net/p/xmlunit/code/566 Author: bodewig Date: 2014-12-04 17:39:15 +0000 (Thu, 04 Dec 2014) Log Message: ----------- Java6 is the new baseline for XMLUnit 2.x Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2014-12-04 17:36:17 UTC (rev 565) +++ trunk/xmlunit/build.xml 2014-12-04 17:39:15 UTC (rev 566) @@ -39,8 +39,8 @@ <property name="userguide.docs.dir" value="${docs.dir}/userguide"/> <!-- javac properties --> - <property name="javac.source" value="5"/> - <property name="javac.target" value="5"/> + <property name="javac.source" value="6"/> + <property name="javac.target" value="6"/> <property name="javac.debug" value="true"/> <!-- junit task properties --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |