You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by br...@apache.org on 2013/01/02 03:33:17 UTC

svn commit: r1427626 - /continuum/parent/trunk/pom.xml

Author: brett
Date: Wed Jan  2 02:33:16 2013
New Revision: 1427626

URL: http://svn.apache.org/viewvc?rev=1427626&view=rev
Log:
consistent setting on distributionManagement so that site:stage can calculate
the correct base URL for the site

Modified:
    continuum/parent/trunk/pom.xml

Modified: continuum/parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/continuum/parent/trunk/pom.xml?rev=1427626&r1=1427625&r2=1427626&view=diff
==============================================================================
--- continuum/parent/trunk/pom.xml (original)
+++ continuum/parent/trunk/pom.xml Wed Jan  2 02:33:16 2013
@@ -102,7 +102,6 @@ under the License.
   </scm>  
   
   <distributionManagement>
-    <!-- Site omitted - each project must provide their own -->
     <repository>
       <id>archiva-repository.releases</id>
       <name>Apache Release Staging Repository</name>
@@ -113,6 +112,11 @@ under the License.
       <name>Apache Development Snapshot Repository</name>
       <url>https://archiva-repository.apache.org/archiva/repository/snapshots/</url>
     </snapshotRepository>
+    <!-- Site base required here for site:stage to calculate correct URLs -->
+    <site>
+      <id>apache</id>
+      <url>scm:svn:${rootSitePublishUrl}</url>
+    </site>
   </distributionManagement>
 
   <build>
@@ -728,5 +732,6 @@ under the License.
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <rootSitePublishUrl>https://svn.apache.org/repos/asf/continuum/site-publish</rootSitePublishUrl>
   </properties>
 </project>