You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2008/07/10 13:58:25 UTC

svn commit: r675534 - /maven/sandbox/branches/SI_MAVEN_2_1/build.xml

Author: jvanzyl
Date: Thu Jul 10 04:58:25 2008
New Revision: 675534

URL: http://svn.apache.org/viewvc?rev=675534&view=rev
Log:
o use a maven.repo.local property so that we can consistently align what the bootstrap does versus what maven will do

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=675534&r1=675533&r2=675534&view=diff
==============================================================================
--- maven/sandbox/branches/SI_MAVEN_2_1/build.xml (original)
+++ maven/sandbox/branches/SI_MAVEN_2_1/build.xml Thu Jul 10 04:58:25 2008
@@ -46,7 +46,7 @@
 
   <target name="pull" depends="init" unless="skip.pull">    
     <property name="verbose" value="false"/>
-    <property name="bootstrap.repository" value="${basedir}/bootstrap-repository"/>
+    <property name="maven.repo.local" value="${basedir}/bootstrap-repository"/>
     <!-- Pull the dependencies that Maven needs to build -->
     <copy file="pom.xml" tofile="dependencies.xml"/>
     <replace file="${basedir}/dependencies.xml" token="&lt;!--start--&gt;" value="&lt;!--"/>
@@ -54,7 +54,7 @@
     <artifact:pom file="${basedir}/dependencies.xml" id="pom"/>                                                                                                     
     <artifact:dependencies pathId="pom.pathid" filesetId="pom.fileset" verbose="${verbose}">
        <!--
-       <localRepository path="${bootstrap.repository}"/>
+       <localRepository path="${maven.repo.local}"/>
        -->
        <pom refid="pom"/>                                                                                                                                       
     </artifact:dependencies>      
@@ -63,7 +63,7 @@
     <!-- Pull the dependencies for Modello -->
     <artifact:dependencies pathId="modello.pathid" filesetId="modello.fileset" verbose="${verbose}">
        <!--
-       <localRepository path="${bootstrap.repository}"/>
+       <localRepository path="${maven.repo.local}"/>
        -->
        <dependency groupId="org.codehaus.modello" artifactId="modello-maven-plugin" version="1.0-alpha-17"/>                                                                                                                                      
     </artifact:dependencies>