Author: markt
Date: Thu Jul 30 06:29:50 2009
New Revision: 799180

URL: http://svn.apache.org/viewvc?rev=799180&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47567
Add some descriptions to the build file.

Modified:
    tomcat/trunk/build.xml

Modified: tomcat/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/build.xml?rev=799180&r1=799179&r2=799180&view=diff
==============================================================================
--- tomcat/trunk/build.xml (original)
+++ tomcat/trunk/build.xml Thu Jul 30 06:29:50 2009
@@ -498,7 +498,8 @@
     </xslt>
   </target>
  
-  <target name="deploy" depends="build-only,build-docs">
+  <target name="deploy" depends="build-only,build-docs"
+          description="Default. Builds a working Tomcat instance">
 
     <copy tofile="${tomcat.build}/bin/tomcat-native.tar.gz"
             file="${tomcat-native.tar.gz}" />
@@ -687,7 +688,7 @@
     </javac>
   </target>
 
-  <target name="test" description="JUnit test cases"
+  <target name="test" description="Runs the JUnit test cases"
     depends="compile,test-compile" >
        
        <junit printsummary="yes" fork="yes">
@@ -711,12 +712,13 @@
   </target>
 
   <target name="clean-depend"
-         description="Clean depend src components">
+          description="Deletes the dependencies that are built from source">
      <delete dir="${tomcat-dbcp.home}"/>
      <delete dir="${jasper-jdt.home}"/>
   </target>
 
-  <target name="clean">
+  <target name="clean"
+             description="Delete the default output folders">
     <delete dir="${tomcat.classes}" />
     <delete dir="${tomcat.build}" />
   </target>
@@ -766,7 +768,7 @@
   </target>
 
   <target name="download"
-          description="Builds and download dependent components">
+          description="Download (and build as necessary) dependent components">
 
     <antcall target="downloadfile">
       <param name="sourcefile" value="${tomcat-native.loc}"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to