cmlenz 2003/06/29 04:12:51
Modified: . build.xml
integration/ant build.xml
framework build.xml
documentation build.xml
samples/servlet build.xml
Log:
Provide nicer "-projecthelp" output
Revision Changes Path
1.56 +15 -4 jakarta-cactus/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/build.xml,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- build.xml 19 May 2003 20:10:38 -0000 1.55
+++ build.xml 29 Jun 2003 11:12:50 -0000 1.56
@@ -19,7 +19,15 @@
Run "ant -projecthelp" to get a list of available targets.
=============================================================================
-->
-<project name="Master Cactus Build" default="release" basedir=".">
+<project name="Master Cactus Build" default="dist" basedir=".">
+
+ <description>
+ Cactus Master Build
+ ---------------------------------------------------------
+ Master build file for building all of the various
+ sub-modules that compose the Cactus project, and
+ packaging release archives.
+ </description>
<!-- Base directory for all file related operations -->
<property name="base.dir" location="."/>
@@ -41,7 +49,8 @@
Generate the release files for all the Cactus subprojects
========================================================================
-->
- <target name="dist">
+ <target name="dist"
+ description="Invokes the 'dist' target of every sub-module">
<ant antfile="framework/build.xml" inheritAll="false"
target="dist">
@@ -113,7 +122,8 @@
========================================================================
-->
<target name="release"
- depends="clean, dist">
+ depends="clean, dist"
+ description="Generates the release archives">
<antcall target="release.bin" inheritall="no">
<param name="j2ee.dependant" value="true"/>
<param name="j2ee.jar" location="${j2ee.12.jar}"/>
@@ -193,7 +203,8 @@
========================================================================
-->
<target name="clean"
- depends="init.properties">
+ depends="init.properties"
+ description="Invokes the 'clean' target of every sub-module">
<delete dir="${release.dir}"/>
<delete dir="target-12"/>
1.40 +7 -0 jakarta-cactus/integration/ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/integration/ant/build.xml,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- build.xml 12 Jun 2003 21:00:20 -0000 1.39
+++ build.xml 29 Jun 2003 11:12:50 -0000 1.40
@@ -23,6 +23,13 @@
-->
<project name="Cactus Ant Integration" default="dist" basedir="../..">
+ <description>
+ Cactus Ant Integration
+ ---------------------------------------------------------
+ Contains tasks, types and support classes for integration
+ of Cactus with Ant.
+ </description>
+
<!-- Base directory for all file related operations -->
<property name="base.dir" location="integration/ant"/>
1.62 +7 -0 jakarta-cactus/framework/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/framework/build.xml,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- build.xml 1 Jun 2003 08:51:10 -0000 1.61
+++ build.xml 29 Jun 2003 11:12:50 -0000 1.62
@@ -36,6 +36,13 @@
-->
<project name="Cactus Framework" default="dist" basedir="..">
+ <description>
+ Cactus Framework
+ ---------------------------------------------------------
+ Contains the core classes of the Cactus in-container
+ testing framework.
+ </description>
+
<!-- Base directory for all file related operations -->
<property name="base.dir" location="framework"/>
1.51 +8 -0 jakarta-cactus/documentation/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/documentation/build.xml,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- build.xml 26 May 2003 18:31:21 -0000 1.50
+++ build.xml 29 Jun 2003 11:12:51 -0000 1.51
@@ -30,6 +30,14 @@
-->
<project name="Cactus Documentation" default="dist" basedir="..">
+ <description>
+ Cactus Documentation
+ ---------------------------------------------------------
+ Contains the documentation and web site of Cactus as XML
+ documents, as well as the XSLT stylesheets for
+ transformation to HTML.
+ </description>
+
<!-- Base directory for all file related operations -->
<property name="base.dir" location="documentation"/>
1.31 +5 -2 jakarta-cactus/samples/servlet/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/samples/servlet/build.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- build.xml 9 Jun 2003 07:11:01 -0000 1.30
+++ build.xml 29 Jun 2003 11:12:51 -0000 1.31
@@ -26,8 +26,11 @@
<project name="Cactus Servlet Sample" default="dist" basedir="../..">
<description>
- Build file for the Cactus Servlet Sample, which shows how to use Cactus for
- unit testing the Servlet API (Servlets, Fitlers, Tag Libraries).
+ Cactus Servlet Sample
+ ---------------------------------------------------------
+ Sample web-application that demonstrates how Cactus can
+ be used for unit testing classes that use the servlet API
+ (such as servlets, filters and tag libraries).
</description>
<!-- Base directory for all file related operations -->
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]