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 2011/07/09 23:28:44 UTC

svn commit: r1144751 - /maven/core-integration-testing/trunk/pom.xml

Author: hboutemy
Date: Sat Jul  9 21:28:43 2011
New Revision: 1144751

URL: http://svn.apache.org/viewvc?rev=1144751&view=rev
Log:
declared apache.snapshots repository like in ASF pom for use when parent is SNAPSHOT

Modified:
    maven/core-integration-testing/trunk/pom.xml

Modified: maven/core-integration-testing/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/pom.xml?rev=1144751&r1=1144750&r2=1144751&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/pom.xml (original)
+++ maven/core-integration-testing/trunk/pom.xml Sat Jul  9 21:28:43 2011
@@ -51,21 +51,14 @@ under the License.
     <url>https://builds.apache.org/hudson/view/M-R/view/Maven/job/core-integration-testing-maven-3-trunk/</url>
   </ciManagement>
 
-  <profiles>
-    <profile>
-      <id>apache.shapshots</id>
-      <repositories>
-        <repository>
-          <id>apache.snapshots</id>
-          <url>https://repository.apache.org/content/groups/snapshots-group/</url>
-          <releases>
-            <enabled>false</enabled>
-          </releases>
-          <snapshots>
-            <enabled>true</enabled>
-          </snapshots>
-        </repository>
-      </repositories>
-    </profile>
-  </profiles>
+  <repositories>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>http://repository.apache.org/snapshots</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
 </project>