You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whirr.apache.org by as...@apache.org on 2011/12/21 13:21:06 UTC

svn commit: r1221692 - /whirr/trunk/build-tools/pom.xml

Author: asavu
Date: Wed Dec 21 12:21:05 2011
New Revision: 1221692

URL: http://svn.apache.org/viewvc?rev=1221692&view=rev
Log:
Fixed build-tools/pom.xml to allow site deployment

Modified:
    whirr/trunk/build-tools/pom.xml

Modified: whirr/trunk/build-tools/pom.xml
URL: http://svn.apache.org/viewvc/whirr/trunk/build-tools/pom.xml?rev=1221692&r1=1221691&r2=1221692&view=diff
==============================================================================
--- whirr/trunk/build-tools/pom.xml (original)
+++ whirr/trunk/build-tools/pom.xml Wed Dec 21 12:21:05 2011
@@ -28,7 +28,11 @@
       <name>Nexus Staging Repo</name>
       <url>https://repository.apache.org/service/local/staging/deploy/maven2/</url>
     </repository>
-  </distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scpexe://people.apache.org/www/whirr.apache.org/docs/${project.version}</url>
+    </site>
+ </distributionManagement>
   <profiles>
     <profile>
       <!-- Used only when cutting a full release.  Configures the deploy plugin to mark
@@ -63,4 +67,22 @@
       </properties>
     </profile>
   </profiles>
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+         <artifactId>wagon-ssh-external</artifactId>
+         <version>1.0-beta-6</version>
+      </extension>
+    </extensions>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>