From: <bo...@us...> - 2007-03-29 07:19:42
|
Revision: 163 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=163&view=rev Author: bodewig Date: 2007-03-29 00:19:41 -0700 (Thu, 29 Mar 2007) Log Message: ----------- test_XMLTestCase behaves now, can run in same VM as other tests Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2007-03-28 16:19:54 UTC (rev 162) +++ trunk/xmlunit/build.xml 2007-03-29 07:19:41 UTC (rev 163) @@ -80,11 +80,6 @@ <exclude name="**/jaxp13/**" unless="jaxp13+.impl"/> </fileset> </batchtest> - <batchtest fork="yes" todir="${test.report.dir}"> - <fileset dir="${test.dir}/java"> - <include name="**/test_XMLTestCase.java"/> - </fileset> - </batchtest> </junit> <junitreport todir="${test.report.dir}"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bo...@us...> - 2007-04-18 15:29:46
|
Revision: 194 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=194&view=rev Author: bodewig Date: 2007-04-18 08:29:47 -0700 (Wed, 18 Apr 2007) Log Message: ----------- Add a target for Apache Gump Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2007-04-18 15:27:50 UTC (rev 193) +++ trunk/xmlunit/build.xml 2007-04-18 15:29:47 UTC (rev 194) @@ -165,7 +165,7 @@ </copy> </target> - <target name="jar" depends="clean,compile" + <target name="jar" depends="compile" description="creates jar, Maven2 POM and Ivy file"> <jar jarfile="${lib.dir}/xmlunit-${xmlunit.version}.jar" basedir="${out.dir}" @@ -190,6 +190,8 @@ </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...> - 2007-04-23 14:58:09
|
Revision: 197 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=197&view=rev Author: bodewig Date: 2007-04-23 07:58:02 -0700 (Mon, 23 Apr 2007) Log Message: ----------- Add POM and ivy.xml to bin-dist, remove C# from Java source-dist Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2007-04-19 04:00:56 UTC (rev 196) +++ trunk/xmlunit/build.xml 2007-04-23 14:58:02 UTC (rev 197) @@ -171,6 +171,10 @@ basedir="${out.dir}" /> + <tstamp> + <format property="ivy.publication.datetime" pattern="yyyyMMddHHmmss"/> + </tstamp> + <copy todir="${lib.dir}"> <fileset dir="${src.dir}/etc"> <include name="xmlunit.pom"/> @@ -195,7 +199,7 @@ <target name="bindist" depends="jar,test,docs"> <zip zipfile="${dist.dir}/xmlunit-${xmlunit.version}-bin.zip"> <zipfileset prefix="xmlunit-${xmlunit.version}/lib" - dir="${lib.dir}" includes="*.jar"/> + dir="${lib.dir}"/> <zipfileset prefix="xmlunit-${xmlunit.version}/docs" dir="${docs.dir}"/> <zipfileset prefix="xmlunit-${xmlunit.version}" dir="."> @@ -215,6 +219,7 @@ <include name="KEYS"/> <include name="LICENSE.txt"/> <include name="README.txt"/> + <exclude name="**/csharp/**"/> </zipfileset> <zipfileset dir="${userguide.docs.dir}" prefix="xmlunit-${xmlunit.version}/userguide"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <bo...@us...> - 2008-06-06 13:07:16
|
Revision: 265 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=265&view=rev Author: bodewig Date: 2008-06-06 06:07:18 -0700 (Fri, 06 Jun 2008) Log Message: ----------- allow command line control over forking/not-forking of <junit> Modified Paths: -------------- trunk/xmlunit/build.xml Modified: trunk/xmlunit/build.xml =================================================================== --- trunk/xmlunit/build.xml 2008-06-06 12:49:58 UTC (rev 264) +++ trunk/xmlunit/build.xml 2008-06-06 13:07:18 UTC (rev 265) @@ -57,6 +57,9 @@ <property name="javac.target" value="1.3"/> <property name="javac.debug" value="true"/> + <!-- junit task properties --> + <property name="junit.fork" value="yes"/> + <!-- some library paths --> <!-- where is JAXP? property name="${xmlxsl.lib}" location="."/ --> <!-- where is JUnit? property name="${junit.lib}" location="."/ --> @@ -126,7 +129,7 @@ <target name="test" depends="compile" description="runs the tests"> - <junit printsummary="yes" haltonfailure="no" fork="yes" + <junit printsummary="yes" haltonfailure="no" fork="${junit.fork}" forkMode="perBatch" failureproperty="tests.failed"> <sysproperty key="basedir" value="${basedir}"/> <sysproperty key="user.dir" value="${basedir}"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |