You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ws...@apache.org on 2008/02/11 03:28:56 UTC

svn commit: r620380 - /maven/archetype/trunk/archetype-plugin/pom.xml

Author: wsmoak
Date: Sun Feb 10 18:28:55 2008
New Revision: 620380

URL: http://svn.apache.org/viewvc?rev=620380&view=rev
Log:
Configure site and staging urls for the archetype plugin.

Modified:
    maven/archetype/trunk/archetype-plugin/pom.xml

Modified: maven/archetype/trunk/archetype-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-plugin/pom.xml?rev=620380&r1=620379&r2=620380&view=diff
==============================================================================
--- maven/archetype/trunk/archetype-plugin/pom.xml (original)
+++ maven/archetype/trunk/archetype-plugin/pom.xml Sun Feb 10 18:28:55 2008
@@ -53,6 +53,13 @@
           <goalPrefix>archetype</goalPrefix>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/plugins/$
+{artifactId}-${version}</stagingSiteURL>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
@@ -72,4 +79,10 @@
       </plugin>
     </plugins>
   </reporting>
-</project>
\ No newline at end of file
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scp://people.apache.org/www/maven.apache.org/plugins/maven-archetype-plugin</url>
+    </site>
+  </distributionManagement>
+</project>