You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2012/03/01 22:31:01 UTC

svn commit: r1295911 - /archiva/all/pom.xml

Author: olamy
Date: Thu Mar  1 21:31:01 2012
New Revision: 1295911

URL: http://svn.apache.org/viewvc?rev=1295911&view=rev
Log:
declare repositories in the aggregator pom to help the build

Modified:
    archiva/all/pom.xml

Modified: archiva/all/pom.xml
URL: http://svn.apache.org/viewvc/archiva/all/pom.xml?rev=1295911&r1=1295910&r2=1295911&view=diff
==============================================================================
--- archiva/all/pom.xml (original)
+++ archiva/all/pom.xml Thu Mar  1 21:31:01 2012
@@ -11,4 +11,53 @@
     <module>archiva</module>
     <module>site</module>
   </modules>
+
+      <repositories>
+        <repository>
+          <id>redback.snapshots</id>
+          <name>Codehaus Redback Snapshots Repository</name>
+          <url>http://snapshots.repository.codehaus.org/</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+        <repository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshots</name>
+          <url>https://repository.apache.org/content/groups/snapshots/</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+      <pluginRepositories>
+        <pluginRepository>
+          <id>apache.snapshots</id>
+          <name>Apache Snapshots</name>
+          <url>https://repository.apache.org/content/groups/snapshots/</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </pluginRepository>
+        <pluginRepository>
+          <id>codehaus.snapshots</id>
+          <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url>
+          <releases>
+            <enabled>false</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </pluginRepository>
+      </pluginRepositories>
+
 </project>