You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2008/08/09 19:45:42 UTC

svn commit: r684306 - /maven/release/trunk/pom.xml

Author: olamy
Date: Sat Aug  9 10:45:42 2008
New Revision: 684306

URL: http://svn.apache.org/viewvc?rev=684306&view=rev
Log:
declare the snapshot repository until the parent is released
we must be able to test it without installing locally the parent pom


Modified:
    maven/release/trunk/pom.xml

Modified: maven/release/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/release/trunk/pom.xml?rev=684306&r1=684305&r2=684306&view=diff
==============================================================================
--- maven/release/trunk/pom.xml (original)
+++ maven/release/trunk/pom.xml Sat Aug  9 10:45:42 2008
@@ -76,4 +76,20 @@
       </plugins>
     </pluginManagement>
   </build>
+  
+  <!-- remove when parent is released -->
+  <repositories>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+    
 </project>