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/11 00:31:51 UTC

svn commit: r1144983 - /maven/shared/trunk/maven-shared-components/pom.xml

Author: hboutemy
Date: Sun Jul 10 22:31:50 2011
New Revision: 1144983

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

Modified:
    maven/shared/trunk/maven-shared-components/pom.xml

Modified: maven/shared/trunk/maven-shared-components/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-components/pom.xml?rev=1144983&r1=1144982&r2=1144983&view=diff
==============================================================================
--- maven/shared/trunk/maven-shared-components/pom.xml (original)
+++ maven/shared/trunk/maven-shared-components/pom.xml Sun Jul 10 22:31:50 2011
@@ -131,6 +131,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>
@@ -178,20 +189,5 @@ under the License.
         </plugins>        
       </build>
     </profile>    
-    <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>
 </project>