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:25:00 UTC

svn commit: r1144750 - /maven/plugins/trunk/maven-plugins/pom.xml

Author: hboutemy
Date: Sat Jul  9 21:24:59 2011
New Revision: 1144750

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

Modified:
    maven/plugins/trunk/maven-plugins/pom.xml

Modified: maven/plugins/trunk/maven-plugins/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?rev=1144750&r1=1144749&r2=1144750&view=diff
==============================================================================
--- maven/plugins/trunk/maven-plugins/pom.xml (original)
+++ maven/plugins/trunk/maven-plugins/pom.xml Sat Jul  9 21:24:59 2011
@@ -126,6 +126,17 @@ under the License.
     </site>
   </distributionManagement>
 
+  <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>
+
   <build>
     <pluginManagement>
       <plugins>
@@ -323,17 +334,4 @@ under the License.
       </build>   
     </profile> 	
   </profiles>
-  <!-- remove when parent released -->
-  <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>
 </project>