You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by si...@apache.org on 2013/01/29 22:12:18 UTC

svn commit: r1440134 - /incubator/onami/sandbox/factoryannotation/pom.xml

Author: simonetripodi
Date: Tue Jan 29 21:12:18 2013
New Revision: 1440134

URL: http://svn.apache.org/viewvc?rev=1440134&view=rev
Log:
configyred factoryannotation site deployment

Modified:
    incubator/onami/sandbox/factoryannotation/pom.xml

Modified: incubator/onami/sandbox/factoryannotation/pom.xml
URL: http://svn.apache.org/viewvc/incubator/onami/sandbox/factoryannotation/pom.xml?rev=1440134&r1=1440133&r2=1440134&view=diff
==============================================================================
--- incubator/onami/sandbox/factoryannotation/pom.xml (original)
+++ incubator/onami/sandbox/factoryannotation/pom.xml Tue Jan 29 21:12:18 2013
@@ -58,6 +58,13 @@
     </notifiers>
   </ciManagement>
 
+  <distributionManagement>
+    <site>
+      <id>apache.website.svnpub</id>
+      <url>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/site/factoryannotation</url>
+    </site>
+  </distributionManagement>
+
   <dependencies>
     <dependency>
       <groupId>org.sonatype.sisu</groupId>
@@ -71,4 +78,55 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <locales>en</locales>
+          <skipDeploy>true</skipDeploy>
+        </configuration>
+        <executions>
+          <execution>
+            <id>attach-descriptor</id>
+            <goals>
+              <goal>attach-descriptor</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>stage-for-scm-publish</id>
+            <phase>post-site</phase>
+            <goals>
+              <goal>stage</goal>
+            </goals>
+            <configuration>
+              <skipDeploy>false</skipDeploy>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-scm-publish-plugin</artifactId>
+        <inherited>false</inherited>
+        <configuration>
+          <checkinComment>Onami FactoryAnnotation site deployment</checkinComment>
+          <checkoutDirectory>${user.home}/onami-sites/onami-factoryannotation-site</checkoutDirectory>
+        </configuration>
+        <executions>
+          <execution>
+            <id>scm-publish</id>
+            <phase>site-deploy</phase>
+            <goals>
+              <goal>publish-scm</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>