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 2012/12/14 02:38:11 UTC

git commit: svnpubsub configuration simplification #1: factored out svn base url from maven.surefire.pubScmUrl property, replacing it with maven.surefire.site.path

Updated Branches:
  refs/heads/master a233bc934 -> 1ab790ead


svnpubsub configuration simplification #1: factored out svn base
url from maven.surefire.pubScmUrl property, replacing it with
maven.surefire.site.path

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

Branch: refs/heads/master
Commit: 1ab790ead6d0646d49642d0c18f39c2deeca9c52
Parents: a233bc9
Author: Hervé Boutemy <hb...@apache.org>
Authored: Fri Dec 14 02:38:02 2012 +0100
Committer: Hervé Boutemy <hb...@apache.org>
Committed: Fri Dec 14 02:38:02 2012 +0100

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


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/1ab790ea/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 32263e1..e9b15f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -119,7 +119,7 @@
     <maven.surefire.siteFilePath>${maven.site.cache}/surefire-${project.version}/</maven.surefire.siteFilePath>
     <maven.surefire.siteUrlDeployment>file://${maven.surefire.siteFilePath}</maven.surefire.siteUrlDeployment>
     <maven.surefire.scmPubCheckoutDirectory>${maven.site.cache}/surefire-site-content-${project.version}</maven.surefire.scmPubCheckoutDirectory>
-    <maven.surefire.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/maven/content/surefire-archives/surefire-${project.version}</maven.surefire.scmPubUrl>
+    <maven.surefire.site.path>surefire-archives/surefire-${project.version}</maven.surefire.site.path>
   </properties>
 
   <distributionManagement>
@@ -302,7 +302,7 @@
           <version>1.0-beta-2</version>
           <configuration>
             <checkoutDirectory>${maven.surefire.scmPubCheckoutDirectory}</checkoutDirectory>
-            <pubScmUrl>scm:svn:${maven.surefire.scmPubUrl}</pubScmUrl>
+            <pubScmUrl>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.surefire.site.path}</pubScmUrl>
             <checkinComment>Apache Maven Surefire site deployment</checkinComment>
             <content>${maven.surefire.siteFilePath}</content>
             <tryUpdate>true</tryUpdate>
@@ -425,7 +425,7 @@
         <maven.surefire.siteFilePath>${maven.site.cache}/surefire</maven.surefire.siteFilePath>
         <maven.surefire.siteUrlDeployment>file://${maven.surefire.siteFilePath}</maven.surefire.siteUrlDeployment>
         <maven.surefire.scmPubCheckoutDirectory>${maven.site.cache}/surefire-site-content</maven.surefire.scmPubCheckoutDirectory>
-        <maven.surefire.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/maven/content/surefire</maven.surefire.scmPubUrl>
+        <maven.surefire.site.path>surefire</maven.surefire.site.path>
       </properties>
     </profile>
   </profiles>