Follow up to https://issues.apache.org/bugzilla/show_bug.cgi?id=47567
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Jul 2009 06:35:54 +0000 (06:35 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 30 Jul 2009 06:35:54 +0000 (06:35 +0000)
Add descriptions to the extras build script

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@799182 13f79535-47bb-0310-9956-ffa450edef68

extras.xml

index dabd7fc..435ca63 100644 (file)
     <mkdir dir="${tomcat.extras}"/>
   </target>
 
-  <target name="clean">
+  <target name="clean" description="Delete the default output folders">
        <delete dir="${tomcat.extras}"/>
   </target>
 
-  <target name="commons-logging">
+  <target name="commons-logging" depends="prepare"
+             description="Build JULI for log4j extras package">
     
     <antcall target="downloadfile">
       <param name="sourcefile" value="${commons-logging-src.loc}"/>
 
   </target>
 
-  <target name="webservices">
+  <target name="webservices" depends="prepare"
+             description="Build web services extras package">
        
            <mkdir dir="${tomcat.extras}/webservices"/>
        
        
   </target>
 
-  <target name="jmx-remote" >
+  <target name="jmx-remote" depends="prepare"
+             description="Build JMX remote extras package">
     <!-- Create the JAR file -->
     <jar jarfile="${catalina-jmx-remote.jar}">
            <fileset dir="${tomcat.classes}">
          
   </target>
   
-  <target name="extras" depends="prepare,commons-logging,webservices,jmx-remote">
+  <target name="extras" depends="prepare,commons-logging,webservices,jmx-remote"
+             description="Build all extras packages">
   </target>
 
   <!-- Download and dependency building -->