You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ra...@apache.org on 2008/04/29 22:51:04 UTC

svn commit: r652101 - /commons/proper/commons-parent/trunk/pom.xml

Author: rahul
Date: Tue Apr 29 13:51:04 2008
New Revision: 652101

URL: http://svn.apache.org/viewvc?rev=652101&view=rev
Log:
Change distributionManagement/repository contents (i.e. change only relevant if "final" version is used) in the rc profile so per-RC staging repositories can be set up under p.a.o/builds/commons/... without the need to define additional command-line properties etc.
New property "commons.rc.version" for constructing such staging repo URLs.
COMMONSSITE-27

Modified:
    commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=652101&r1=652100&r2=652101&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Tue Apr 29 13:51:04 2008
@@ -451,7 +451,7 @@
         <repository>
           <id>apache.snapshots</id>
           <name>Apache Development Snapshot Repository</name>
-          <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+          <url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/staged</url>
         </repository>
         <snapshotRepository>
           <id>apache.snapshots</id>
@@ -557,6 +557,9 @@
     <!-- Commons Component Id -->
     <commons.componentid>${project.artifactId}</commons.componentid>
 
+    <!-- The RC version used in the staging repository URL. -->
+    <commons.rc.version>RC1</commons.rc.version>
+
     <!-- Configuration properties for the OSGi maven-bundle-plugin -->
     <commons.osgi.symbolicName>org.apache.commons.${commons.componentid}</commons.osgi.symbolicName>
     <commons.osgi.export>org.apache.commons.*;version=${pom.version}</commons.osgi.export>