You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/10/04 00:35:23 UTC

svn commit: r452659 - /incubator/activemq/trunk/pom.xml

Author: chirino
Date: Tue Oct  3 15:35:22 2006
New Revision: 452659

URL: http://svn.apache.org/viewvc?view=rev&rev=452659
Log:
Use property variables to specify the URLs of the distribution repositories so that they can be overriden on the command line

Modified:
    incubator/activemq/trunk/pom.xml

Modified: incubator/activemq/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/pom.xml?view=diff&rev=452659&r1=452658&r2=452659
==============================================================================
--- incubator/activemq/trunk/pom.xml (original)
+++ incubator/activemq/trunk/pom.xml Tue Oct  3 15:35:22 2006
@@ -112,7 +112,7 @@
     <repository>
       <id>apache.incubating.releases</id>
       <name>Apache Incubating Release Distribution Repository</name>
-      <url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-incubating-repository</url>
+      <url>${dist-repo-url}</url>
     </repository>
     <snapshotRepository>
       <id>apache.snapshots</id>
@@ -121,7 +121,7 @@
     </snapshotRepository>
     <site>
       <id>apache.website</id>
-      <url>scpexe://people.apache.org/www/incubator.apache.org/activemq/maven/</url>
+      <url>${site-repo-url}</url>
     </site>
   </distributionManagement>
 
@@ -951,5 +951,7 @@
     <xmlpull-version>1.1.3.4d_b4_min</xmlpull-version>
     <xstream-version>1.1.2</xstream-version>
     <xbean-version>2.6</xbean-version>
+    <dist-repo-url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-incubating-repository</dist-repo-url>
+    <site-repo-url>scpexe://people.apache.org/www/incubator.apache.org/activemq/maven/</site-repo-url>
   </properties>
 </project>