stephan 2003/03/22 09:06:11
Modified: src/targets forrest-build.xml test-build.xml
Log:
Remove descriptions to hide internal targets from the projecthelp option.
Revision Changes Path
1.4 +6 -3 cocoon-2.1/src/targets/forrest-build.xml
Index: forrest-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/forrest-build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- forrest-build.xml 22 Mar 2003 17:02:18 -0000 1.3
+++ forrest-build.xml 22 Mar 2003 17:06:11 -0000 1.4
@@ -4,15 +4,18 @@
<ant antfile="${forrest.home}/forrest.antproxy.xml" target="site"/>
</target>
- <target name="forrest.webapp" depends="forrest.init" description="Generates an
unpackaged webapp of the website">
+ <!-- Generates an unpackaged webapp of the website -->
+ <target name="forrest.webapp" depends="forrest.init">
<ant antfile="${forrest.home}/forrest.antproxy.xml" target="webapp"/>
</target>
- <target name="forrest.war" depends="forrest.init" description="Generates a .war
file containing the website">
+ <!-- Generates a .war file containing the website -->
+ <target name="forrest.war" depends="forrest.init">
<ant antfile="${forrest.home}/forrest.antproxy.xml" target="war"/>
</target>
- <target name="forrest.validate" depends="forrest.init" description="Validates XML
documentation files">
+ <!-- Validates XML documentation files -->
+ <target name="forrest.validate" depends="forrest.init">
<ant antfile="${forrest.home}/forrest.antproxy.xml" target="validate"/>
</target>
1.4 +2 -2 cocoon-2.1/src/targets/test-build.xml
Index: test-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/test-build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- test-build.xml 22 Mar 2003 17:02:18 -0000 1.3
+++ test-build.xml 22 Mar 2003 17:06:11 -0000 1.4
@@ -4,7 +4,7 @@
<target name="test" depends="junit.tests, anteater.tests" description="Runs all
tests"/>
<!-- Runs JUnit tests -->
- <target name="junit.tests" depends="compile" description="Runs the unit tests">
+ <target name="junit.tests" depends="compile">
<mkdir dir="${build.test}"/>
<!-- Copy test files to build test dir -->
@@ -54,7 +54,7 @@
</target>
<!-- Anteater tests -->
- <target name="anteater.tests" description="Runs the functional tests">
+ <target name="anteater.tests">
<property name="host" value="localhost"/>
<property name="port" value="8888"/>
<property name="base" value="/"/>