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 ch...@apache.org on 2005/02/22 05:29:11 UTC

svn commit: r154786 - webservices/axis/trunk/java/maven.xml

Author: chinthaka
Date: Mon Feb 21 20:29:11 2005
New Revision: 154786

URL: http://svn.apache.org/viewcvs?view=rev&rev=154786
Log:
Added a goal to generate javadocs for all modules

Modified:
    webservices/axis/trunk/java/maven.xml

Modified: webservices/axis/trunk/java/maven.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/maven.xml?view=diff&r1=154785&r2=154786
==============================================================================
--- webservices/axis/trunk/java/maven.xml (original)
+++ webservices/axis/trunk/java/maven.xml Mon Feb 21 20:29:11 2005
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
  -->
-<project default="multiproject:install">
+<project default="multiproject:install" xmlns:m="jelly:maven">
 		 <goal name="clean">
 			    <delete dir="target"/>
 			    <delete dir="modules/core/target"/>
@@ -111,5 +111,20 @@
     <preGoal name="xdoc:jelly-transform">
     <attainGoal name="html2xdoc"/>
   </preGoal>
+  
+  <goal
+    name="multiproject-javadoc"
+    description="Generate the javadoc the entire project">
+
+    <!-- Generate the javadoc for each of the components. -->
+
+    
+      <m:reactor basedir="${basedir}/modules"
+               includes="*/project.xml"
+               goals="javadoc"
+               banner="Building"
+               ignoreFailures="false"/>
+
+  </goal>
 
 </project>