You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by og...@apache.org on 2008/08/04 23:05:20 UTC

svn commit: r682507 - /maven/sandbox/trunk/mercury/pom.xml

Author: ogusakov
Date: Mon Aug  4 14:05:20 2008
New Revision: 682507

URL: http://svn.apache.org/viewvc?rev=682507&view=rev
Log:
added distribution management to the POM in order to build/deploy it in Hudson

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

Modified: maven/sandbox/trunk/mercury/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/mercury/pom.xml?rev=682507&r1=682506&r2=682507&view=diff
==============================================================================
--- maven/sandbox/trunk/mercury/pom.xml (original)
+++ maven/sandbox/trunk/mercury/pom.xml Mon Aug  4 14:05:20 2008
@@ -20,4 +20,18 @@
     <defaultGoal>install</defaultGoal>
   </build>
 
+  <properties>
+  	<distMgmtSnapshotsName>CI Snapshot Repository</distMgmtSnapshotsName>
+  	<distMgmtSnapshotsUrl>http://localhost:8081/content/repositories/maven.snapshots</distMgmtSnapshotsUrl>
+  </properties>
+  
+  <distributionManagement>
+	<snapshotRepository>
+		<id>apache.snapshots</id>
+		<name>${distMgmtSnapshotsName}</name>
+		<url>${distMgmtSnapshotsUrl}</url>
+	</snapshotRepository>
+  </distributionManagement>
+  
+
 </project>
\ No newline at end of file