You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2013/02/07 00:02:34 UTC

git commit: introduced maven.site.path property

Updated Branches:
  refs/heads/master 297bbca90 -> ada6bd1e6


introduced maven.site.path property

Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/ada6bd1e
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/ada6bd1e
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/ada6bd1e

Branch: refs/heads/master
Commit: ada6bd1e63087a881f2f4994a7a6c9324f806dc1
Parents: 297bbca
Author: Hervé Boutemy <hb...@apache.org>
Authored: Thu Feb 7 00:02:31 2013 +0100
Committer: Hervé Boutemy <hb...@apache.org>
Committed: Thu Feb 7 00:02:31 2013 +0100

----------------------------------------------------------------------
 pom.xml |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/ada6bd1e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 0b84276..f67b00e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -62,6 +62,7 @@
     <distributionId>apache-maven</distributionId>
     <distributionShortName>Maven</distributionShortName>
     <distributionName>Apache Maven</distributionName>
+    <maven.site.path>ref/3-LATEST</maven.site.path>
   </properties>
 
   <modules>
@@ -96,7 +97,7 @@
   <distributionManagement>
     <site>
       <id>apache.website</id>
-      <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/ref/3-LATEST</url>
+      <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url>
     </site>
   </distributionManagement>
 
@@ -419,8 +420,8 @@
           <artifactId>maven-scm-publish-plugin</artifactId>
           <version>1.0-beta-2</version>
           <configuration>
-            <content>${project.build.directory}/staging/ref/3-LATEST</content>
-            <checkoutDirectory>${maven.site.cache}/ref/3-LATEST</checkoutDirectory>
+            <content>${project.build.directory}/staging/${maven.site.path}</content>
+            <checkoutDirectory>${maven.site.cache}/${maven.site.path}</checkoutDirectory>
             <tryUpdate>true</tryUpdate>
           </configuration>
         </plugin>