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/06/25 21:47:16 UTC

svn commit: r1139603 - /maven/archetype/trunk/pom.xml

Author: hboutemy
Date: Sat Jun 25 19:47:16 2011
New Revision: 1139603

URL: http://svn.apache.org/viewvc?rev=1139603&view=rev
Log:
add snapshot repository until the parent release

Modified:
    maven/archetype/trunk/pom.xml

Modified: maven/archetype/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/pom.xml?rev=1139603&r1=1139602&r2=1139603&view=diff
==============================================================================
--- maven/archetype/trunk/pom.xml (original)
+++ maven/archetype/trunk/pom.xml Sat Jun 25 19:47:16 2011
@@ -279,4 +279,18 @@ under the License.
       </plugin>-->
     </plugins>
   </build>
+
+  <!-- TODO remove when the parent will be 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>