Author: jvanzyl Date: Thu Jul 10 05:55:15 2008 New Revision: 675555 URL: http://svn.apache.org/viewvc?rev=675555&view=rev Log: o allow the specification of the surefire use file property
Modified: maven/sandbox/branches/SI_MAVEN_2_1/build.xml Modified: maven/sandbox/branches/SI_MAVEN_2_1/build.xml URL: http://svn.apache.org/viewvc/maven/sandbox/branches/SI_MAVEN_2_1/build.xml?rev=675555&r1=675554&r2=675555&view=diff ============================================================================== --- maven/sandbox/branches/SI_MAVEN_2_1/build.xml (original) +++ maven/sandbox/branches/SI_MAVEN_2_1/build.xml Thu Jul 10 05:55:15 2008 @@ -58,7 +58,10 @@ <target name="pull" depends="init" unless="skip.pull"> <property name="verbose" value="false"/> + + <!-- Initialize properties --> <property name="maven.repo.local" value="${user.home}/.m2/repository"/> + <property name="surefire.useFile" value="true"/> <!-- Pull the dependencies that Maven needs to build --> <copy file="pom.xml" tofile="dependencies.xml"/> <replace file="${basedir}/dependencies.xml" token="<!--start-->" value="<!--"/> @@ -151,6 +154,7 @@ <arg value="clean"/> <arg value="install"/> <arg value="-Dmaven.repo.local=${maven.repo.local}"/> + <arg value="-Dsurefire.useFile=${surefire.useFile}"/> </java> </target>