You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by br...@apache.org on 2009/03/09 00:37:01 UTC

svn commit: r751553 - /archiva/trunk/pom.xml

Author: brett
Date: Sun Mar  8 23:37:01 2009
New Revision: 751553

URL: http://svn.apache.org/viewvc?rev=751553&view=rev
Log:
put the required repositories in by default

Modified:
    archiva/trunk/pom.xml

Modified: archiva/trunk/pom.xml
URL: http://svn.apache.org/viewvc/archiva/trunk/pom.xml?rev=751553&r1=751552&r2=751553&view=diff
==============================================================================
--- archiva/trunk/pom.xml (original)
+++ archiva/trunk/pom.xml Sun Mar  8 23:37:01 2009
@@ -1178,32 +1178,29 @@
         </plugins>
       </build>
     </profile>
-    <profile>
-      <id>buildWithAdditionalRepos</id>
-      <repositories>
-        <repository>
-          <releases>
-            <enabled>true</enabled>
-          </releases>
-          <snapshots>
-            <enabled>false</enabled>
-          </snapshots>
-          <id>sonatype.public</id>
-          <name>Sonatype Public Repo</name>
-          <url>http://repository.sonatype.org/content/repositories/sonatype-apache-releases</url>
-        </repository> 
-        <repository>
-          <releases>
-            <enabled>false</enabled>
-          </releases>
-          <snapshots>
-            <enabled>true</enabled>
-          </snapshots>
-          <id>codehaus.org.snapshots</id>
-          <name>Codehaus Snapshots Repository</name>
-          <url>http://snapshots.repository.codehaus.org</url>
-        </repository> 
-      </repositories>
-    </profile>
   </profiles>
+  <repositories>
+    <repository>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <id>sonatype.public</id>
+      <name>Sonatype Public Repo</name>
+      <url>http://repository.sonatype.org/content/repositories/sonatype-apache-releases</url>
+    </repository> 
+    <repository>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <id>codehaus.org.snapshots</id>
+      <name>Codehaus Snapshots Repository</name>
+      <url>http://snapshots.repository.codehaus.org</url>
+    </repository> 
+  </repositories>
 </project>