You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by st...@apache.org on 2005/11/18 17:10:53 UTC

svn commit: r345512 - /webservices/axis2/trunk/java/build.xml

Author: stevel
Date: Fri Nov 18 08:10:48 2005
New Revision: 345512

URL: http://svn.apache.org/viewcvs?rev=345512&view=rev
Log:
added a clean target that works on big projects, as maven clean:clean doesnt.

Modified:
    webservices/axis2/trunk/java/build.xml

Modified: webservices/axis2/trunk/java/build.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/build.xml?rev=345512&r1=345511&r2=345512&view=diff
==============================================================================
--- webservices/axis2/trunk/java/build.xml (original)
+++ webservices/axis2/trunk/java/build.xml Fri Nov 18 08:10:48 2005
@@ -52,14 +52,21 @@
 
   </target>
 
+  <target name="clean" depends="init"
+      description="clean everything">
+    <maven>
+      <arg value="multiproject:clean"/>
+    </maven>
+  </target>
 
-
-  <target name="dist" depends="init">
+  <target name="dist" depends="init"
+      description="make a distribution">
     <maven>
     </maven>
   </target>
 
-  <target name="dist-lite" depends="init">
+  <target name="dist-lite" depends="init"
+      description="make a distribution, skip testing">
     <maven>
       <arg value="-Dmaven.test.skip=true" />
     </maven>
@@ -104,6 +111,7 @@
   <target name="ready-to-deploy" depends="m2-pom,dist-lite" />
 
   <target name="m2-install" depends="ready-to-deploy"
+      description="install the libray into the local m2 repository"
       xmlns:m2="antlib:org.apache.maven.artifact.ant">
     <m2:install file="${target.jar}">
       <pom refid="m2.pom"/>