You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by si...@apache.org on 2012/12/13 23:41:51 UTC

svn commit: r1421589 - /incubator/amber/trunk/pom.xml

Author: simonetripodi
Date: Thu Dec 13 22:41:50 2012
New Revision: 1421589

URL: http://svn.apache.org/viewvc?rev=1421589&view=rev
Log:
started plugging the scm-plugin to automate manual operations

Modified:
    incubator/amber/trunk/pom.xml

Modified: incubator/amber/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/pom.xml?rev=1421589&r1=1421588&r2=1421589&view=diff
==============================================================================
--- incubator/amber/trunk/pom.xml (original)
+++ incubator/amber/trunk/pom.xml Thu Dec 13 22:41:50 2012
@@ -255,6 +255,12 @@
      </notifier>
    </notifiers>
   </ciManagement>
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>${amber.siteUrlDeployment}</url>
+    </site>
+  </distributionManagement>
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -267,15 +273,11 @@
     <!--
      | Amber website has to be stored in SVN
      |
-     | using the appropriate wagon, site deploy is slow, because deploy works file-by-file
-     | So consider the alternative of
-     | deploying the site in a local dir (where you checked out the site dir)
-     | then committing in one shot, i.e.
-     |
-     | svn co https://svn.apache.org/repos/asf/incubator/amber/site
-     | mvn site-deploy -Dsite.deploymentBaseUrl=file://path/to/checked/out/site
+     | mvn clean site-deploy scm-publish:publish-scm -Dusername=uid -Dpassword=pwd
     -->
-    <site.deploymentBaseUrl>svn:https://svn.apache.org/repos/asf/incubator/amber/site</site.deploymentBaseUrl>
+    <amber.siteFilePath>${user.home}/amber-site/</amber.siteFilePath>
+    <amber.siteUrlDeployment>file://${amber.siteFilePath}</amber.siteUrlDeployment>
+    <amber.scmPubCheckoutDirectory>${user.home}/amber-site/</amber.scmPubCheckoutDirectory>
     <assembly.skip>false</assembly.skip>
   </properties>
 
@@ -417,6 +419,19 @@
             <arguments>-Prelease,apache</arguments>
           </configuration>
         </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-scm-publish-plugin</artifactId>
+          <version>1.0-beta-2</version>
+          <configuration>
+            <tryUpdate>true</tryUpdate>
+            <checkoutDirectory>${amber.scmPubCheckoutDirectory}</checkoutDirectory>
+            <pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/incubator/amber/site</pubScmUrl>
+            <checkinComment>Apache Amber site deployment</checkinComment>
+            <content>${amber.siteFilePath}</content>
+          </configuration>
+        </plugin>
       </plugins>
     </pluginManagement>