From: David S. <ds...@us...> - 2006-02-27 19:01:45
|
Update of /cvsroot/junit/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14580 Modified Files: build.xml Log Message: Removing class file from repository Index: build.xml =================================================================== RCS file: /cvsroot/junit/junit/build.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- build.xml 15 Feb 2006 22:55:27 -0000 1.14 +++ build.xml 27 Feb 2006 19:01:37 -0000 1.15 @@ -14,11 +14,11 @@ <target name="versiontag" depends="init"> <filter token="version" value="${version}" /> <copy - file="${versionfile}" - tofile="${versionfile}tmp" + file="${versionfile}.template" + tofile="${versionfile}" filtering="on" + overwrite="true" /> - <move file="${versionfile}tmp" tofile="${versionfile}" /> </target> <target name="build" depends="versiontag"> @@ -72,7 +72,7 @@ <copy file="README.html" tofile="${dist}/README.html" /> <copy file="cpl-v10.html" tofile="${dist}/cpl-v10.html" /> - <java classname="org.junit.runner.JUnitCore" fork="yes"> + <java classname="org.junit.runner.JUnitCore" fork="yes" failonerror="true"> <arg value="org.junit.tests.AllTests"/> <classpath> <pathelement location="${dist}" /> |