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/12/11 18:25:56 UTC

svn commit: r725750 - /maven/components/branches/maven-2.1.x/build.xml

Author: jdcasey
Date: Thu Dec 11 09:25:55 2008
New Revision: 725750

URL: http://svn.apache.org/viewvc?rev=725750&view=rev
Log:
forgot -B switch in IT executions.

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

Modified: maven/components/branches/maven-2.1.x/build.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.1.x/build.xml?rev=725750&r1=725749&r2=725750&view=diff
==============================================================================
--- maven/components/branches/maven-2.1.x/build.xml (original)
+++ maven/components/branches/maven-2.1.x/build.xml Thu Dec 11 09:25:55 2008
@@ -227,12 +227,14 @@
       <env key="M2_HOME" value="${maven.home}"/>
       <arg value="/c"/>
       <arg value="${maven.home}\bin\mvn.bat"/>
+      <arg value="-B"/>
       <arg value="process-resources"/>
     </exec>
     <exec failonerror="true" dir="${basedir}/${itPom.artifactId}/target/classes" executable="cmd">
       <env key="M2_HOME" value="${maven.home}"/>
       <arg value="/c"/>
       <arg value="${maven.home}\bin\mvn.bat"/>
+      <arg value="-B"/>
       <arg value="package"/>
     </exec>
     
@@ -243,6 +245,7 @@
       <arg value="/c"/>
       <arg value="${maven.home}\bin\mvn.bat"/>
       <arg value="-Prun-its"/>
+      <arg value="-B"/>
       <arg value="clean"/>
       <arg value="install"/>
     </exec>
@@ -252,10 +255,12 @@
     <echo>Retrieving integration tests</echo>
     <exec failonerror="true" dir="${basedir}/${itPom.artifactId}" executable="${maven.home}/bin/mvn">
       <env key="M2_HOME" value="${maven.home}"/>
+      <arg value="-B"/>
       <arg value="process-resources"/>
     </exec>
     <exec failonerror="true" dir="${basedir}/${itPom.artifactId}/target/classes" executable="${maven.home}/bin/mvn">
       <env key="M2_HOME" value="${maven.home}"/>
+      <arg value="-B"/>
       <arg value="package"/>
     </exec>
     
@@ -264,6 +269,7 @@
     <exec failonerror="true" dir="${java.io.tmpdir}/${itPom.artifactId}-${itPom.version}" executable="${maven.home}/bin/mvn">
       <env key="M2_HOME" value="${maven.home}"/>
       <arg value="-Prun-its"/>
+      <arg value="-B"/>
       <arg value="clean"/>
       <arg value="install"/>
     </exec>