You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2008/10/30 01:39:36 UTC

svn commit: r709061 - /maven/components/branches/maven-2.0.x/build.xml

Author: jdcasey
Date: Wed Oct 29 17:39:36 2008
New Revision: 709061

URL: http://svn.apache.org/viewvc?rev=709061&view=rev
Log:
make the maven IT executions operate in batch mode.

Modified:
    maven/components/branches/maven-2.0.x/build.xml

Modified: maven/components/branches/maven-2.0.x/build.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/build.xml?rev=709061&r1=709060&r2=709061&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/build.xml (original)
+++ maven/components/branches/maven-2.0.x/build.xml Wed Oct 29 17:39:36 2008
@@ -201,6 +201,7 @@
     <exec failonerror="true" dir="${basedir}/maven-integration-tests" executable="cmd">
       <arg value="/c"/>
       <arg value="${maven.home}\bin\mvn.bat"/>
+      <arg value="-B"/>
       <arg value="initialize"/>
     </exec>
     
@@ -208,6 +209,7 @@
     <exec failonerror="true" dir="${basedir}/maven-integration-tests/tests" executable="cmd">
       <arg value="/c"/>
       <arg value="${maven.home}\bin\mvn.bat"/>
+      <arg value="-B"/>
       <arg value="-Prun-its"/>
       <arg value="clean"/>
       <arg value="install"/>
@@ -217,12 +219,14 @@
   <target name="its-unix" if="its.unix">
     <echo>Retrieving integration tests</echo>
     <exec failonerror="true" dir="${basedir}/maven-integration-tests" executable="${maven.home}/bin/mvn">
+      <arg value="-B"/>
       <arg value="initialize"/>
     </exec>
     
     <echo>Running integration tests</echo>
     <exec failonerror="true" dir="${basedir}/maven-integration-tests/tests" executable="${maven.home}/bin/mvn">
       <arg value="-Prun-its"/>
+      <arg value="-B"/>
       <arg value="clean"/>
       <arg value="install"/>
     </exec>