You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/02/08 13:30:20 UTC

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

Author: bentmann
Date: Sun Feb  8 12:30:20 2009
New Revision: 742071

URL: http://svn.apache.org/viewvc?rev=742071&view=rev
Log:
o Made sure the ITs run with the same local repo as specified to the bootstrap (merged from r742070)

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=742071&r1=742070&r2=742071&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/build.xml (original)
+++ maven/components/branches/maven-2.0.x/build.xml Sun Feb  8 12:30:20 2009
@@ -230,8 +230,8 @@
       <arg value="-e"/>
       <arg value="-B"/>
       <arg value="process-resources"/>
+      <arg value="-Dmaven.repo.local=${maven.repo.local}"/>
     </exec>
-    
     <exec failonerror="true" dir="${basedir}/${itPom.artifactId}/target/classes" executable="cmd">
       <env key="M2_HOME" value="${maven.home}"/>
       <arg value="/c"/>
@@ -239,6 +239,7 @@
       <arg value="-e"/>
       <arg value="-B"/>
       <arg value="package"/>
+      <arg value="-Dmaven.repo.local=${maven.repo.local}"/>
     </exec>
     
     <echo>Running integration tests</echo>
@@ -252,6 +253,7 @@
       <arg value="-B"/>
       <arg value="clean"/>
       <arg value="install"/>
+      <arg value="-Dmaven.repo.local=${maven.repo.local}"/>
     </exec>
   </target>
 
@@ -262,12 +264,14 @@
       <arg value="-e"/>
       <arg value="-B"/>
       <arg value="process-resources"/>
+      <arg value="-Dmaven.repo.local=${maven.repo.local}"/>
     </exec>
     <exec failonerror="true" dir="${basedir}/${itPom.artifactId}/target/classes" executable="${maven.home}/bin/mvn">
       <env key="M2_HOME" value="${maven.home}"/>
       <arg value="-e"/>
       <arg value="-B"/>
       <arg value="package"/>
+      <arg value="-Dmaven.repo.local=${maven.repo.local}"/>
     </exec>
     
     <echo>Running integration tests</echo>
@@ -278,6 +282,7 @@
       <arg value="-B"/>
       <arg value="clean"/>
       <arg value="install"/>
+      <arg value="-Dmaven.repo.local=${maven.repo.local}"/>
     </exec>
   </target>