You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ah...@apache.org on 2005/09/03 15:52:54 UTC

svn commit: r267457 - /maven/maven-1/plugins/trunk/maven.xml

Author: aheritier
Date: Sat Sep  3 06:52:51 2005
New Revision: 267457

URL: http://svn.apache.org/viewcvs?rev=267457&view=rev
Log:
more custom goals

Modified:
    maven/maven-1/plugins/trunk/maven.xml

Modified: maven/maven-1/plugins/trunk/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/maven.xml?rev=267457&r1=267456&r2=267457&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/maven.xml (original)
+++ maven/maven-1/plugins/trunk/maven.xml Sat Sep  3 06:52:51 2005
@@ -15,32 +15,32 @@
  * limitations under the License.
  */
  -->
-<project
-  xmlns:ant="jelly:ant"
-  xmlns:i="jelly:interaction"
-  xmlns:j="jelly:core">
-
-  <goal name="plugins:test-all">
+<project xmlns:ant="jelly:ant" xmlns:i="jelly:interaction" xmlns:j="jelly:core">
+  <goal name="plugins:install-all" description="Install all plugins">
+    <j:set var="goal" value="clean,plugin:install"/>
+    <attainGoal name="multiproject:goal"/>
+  </goal>
+  <goal name="plugins:repository-deploy-all" description="Deploy all plugins in a remote repository">
+    <j:set var="goal" value="clean,plugin:repository-deploy"/>
+    <attainGoal name="multiproject:goal"/>
+  </goal>
+  <goal name="plugins:test-all" description="Test all plugins">
     <j:set var="goal" value="plugin:test"/>
     <!-- The following tests are broken under any version of Maven -->
-    <j:set var="maven.multiproject.excludes" value="aspectwerkz/*,cruisecontrol/*,dashboard/*,eclipse/*,javadoc/*,clover/*,gump/*"/>
+    <j:set var="maven.multiproject.excludes" value="aspectwerkz/*,cruisecontrol/*,dashboard/*,eclipse/*,javadoc/*,clover/*,gump/*,plugin/*"/>
     <attainGoal name="multiproject:goal"/>
   </goal>
-
+  <goal name="plugins:site" description="Create the web site root for all plugins">
+    <attainGoal name="multiproject:site"/>
+  </goal>
   <goal name="confirm-and-deploy-site">
-    <i:ask 
-      question="Would you like to regenerate and deploy the main plugins site (y/n)?"
-      answer="ok"
-      default="y"
-    />
+    <i:ask question="Would you like to regenerate and deploy the main plugins site (y/n)?" answer="ok" default="y"/>
     <j:if test="${ok == 'y'}">
-      <attainGoal name="multiproject:site" />
-      <attainGoal name="site:sshdeploy" />
+      <attainGoal name="multiproject:site"/>
+      <attainGoal name="site:sshdeploy"/>
     </j:if>
   </goal>
-
   <postGoal name="site">
-    <ant:move file="${maven.docs.dest}/projects-overview.html" tofile="${maven.docs.dest}/index.html" />
+    <ant:move file="${maven.docs.dest}/projects-overview.html" tofile="${maven.docs.dest}/index.html"/>
   </postGoal>
-
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org