You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2009/02/21 09:26:24 UTC

svn commit: r746453 - /maven/components/trunk/build.xml

Author: hboutemy
Date: Sat Feb 21 08:26:24 2009
New Revision: 746453

URL: http://svn.apache.org/viewvc?rev=746453&view=rev
Log:
fixed bootstrap problem to resolve Modello 1.0.1-SNAPSHOT dependency

Modified:
    maven/components/trunk/build.xml

Modified: maven/components/trunk/build.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/build.xml?rev=746453&r1=746452&r2=746453&view=diff
==============================================================================
--- maven/components/trunk/build.xml (original)
+++ maven/components/trunk/build.xml Sat Feb 21 08:26:24 2009
@@ -87,8 +87,15 @@
 
     <!-- Pull the dependencies for Modello -->
     <artifact:dependencies pathId="modello.pathid" filesetId="modello.fileset" verbose="${verbose}">
-       <localRepository path="${maven.repo.local}"/>
-       <dependency groupId="org.codehaus.modello" artifactId="modello-maven-plugin" version="${pom.properties.modelloVersion}"/>
+      <localRepository path="${maven.repo.local}"/>
+      <!-- TODO: remove when Modello 1.0.1 is released -->
+      <remoteRepository url="http://repo1.maven.org/"/>
+      <remoteRepository url="http://snapshots.repository.codehaus.org/">
+        <snapshots enabled="true"/>
+        <releases enabled="false"/>
+      </remoteRepository>
+      <!-- /TODO -->
+      <dependency groupId="org.codehaus.modello" artifactId="modello-maven-plugin" version="${pom.properties.modelloVersion}"/>
     </artifact:dependencies>
 
     <!-- Pull the dependencies for the MetadataGenerator CLI -->