You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2008/02/19 23:37:21 UTC

svn commit: r629256 - /maven/pom/trunk/maven/pom.xml

Author: jdcasey
Date: Tue Feb 19 14:37:18 2008
New Revision: 629256

URL: http://svn.apache.org/viewvc?rev=629256&view=rev
Log:
Adding parameterized URL and name for snapshots repository in distributionManagement, to allow closed-system build and deploy for CI systems, etc.

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

Modified: maven/pom/trunk/maven/pom.xml
URL: http://svn.apache.org/viewvc/maven/pom/trunk/maven/pom.xml?rev=629256&r1=629255&r2=629256&view=diff
==============================================================================
--- maven/pom/trunk/maven/pom.xml (original)
+++ maven/pom/trunk/maven/pom.xml Tue Feb 19 14:37:18 2008
@@ -80,12 +80,22 @@
       </otherArchives>
     </mailingList>
   </mailingLists>
+  
+  <properties>
+    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
+    <distMgmtSnapshotsUrl>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</distMgmtSnapshotsUrl>
+  </properties>
 
   <distributionManagement>
     <repository>
       <id>maven.staging</id>
       <url>scp://people.apache.org/www/people.apache.org/builds/maven/${project.version}/staging-repo</url>
     </repository>
+    <snapshotRepository>
+      <id>apache.snapshots</id>
+      <name>${distMgmtSnapshotsName}</name>
+      <url>${distMgmtSnapshotsUrl}</url>
+    </snapshotRepository>
     <site>
       <id>apache.website</id>
       <url>scp://people.apache.org/www/maven.apache.org</url>