You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ol...@apache.org on 2011/09/22 00:10:30 UTC

svn commit: r1173889 - /tomcat/maven-plugin/trunk/pom.xml

Author: olamy
Date: Wed Sep 21 22:10:30 2011
New Revision: 1173889

URL: http://svn.apache.org/viewvc?rev=1173889&view=rev
Log:
make distribution urls configurable

Modified:
    tomcat/maven-plugin/trunk/pom.xml

Modified: tomcat/maven-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/maven-plugin/trunk/pom.xml?rev=1173889&r1=1173888&r2=1173889&view=diff
==============================================================================
--- tomcat/maven-plugin/trunk/pom.xml (original)
+++ tomcat/maven-plugin/trunk/pom.xml Wed Sep 21 22:10:30 2011
@@ -47,6 +47,9 @@
     <maven.test.redirectTestOutputToFile>false</maven.test.redirectTestOutputToFile>
     <failsafe.version>2.9</failsafe.version>
     <junit.version>4.9</junit.version>
+    <distributionReleaseUrl>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</distributionReleaseUrl>
+    <distributionSnapshotsUrl>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</distributionSnapshotsUrl>
+    <distributionSiteUrl>scp://people.apache.org/www/tomcat.apache.org/maven-plugin-${project.version}</distributionSiteUrl>
   </properties>
 
   <prerequisites>
@@ -272,16 +275,16 @@
     <repository>
       <id>apache.releases</id>
       <name>Apache Release Distribution Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+      <url>${distributionReleaseUrl}</url>
     </repository>
     <snapshotRepository>
       <id>apache.snapshots</id>
       <name>Apache Development Snapshot Repository</name>
-      <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+      <url>${distributionSnapshotsUrl}</url>
     </snapshotRepository>
     <site>
       <id>apache.website</id>
-      <url>scp://people.apache.org/www/tomcat.apache.org/maven-plugin-${project.version}</url>
+      <url>${distributionSiteUrl}</url>
     </site>
   </distributionManagement>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org