larryi 01/05/15 06:03:07
Modified: . build.xml
Log:
Remove duplicate copy command for jaxp.jar.
Add a target "test.war" that adds the "test" web application to the
distribution build, without including watchdog.
Revision Changes Path
1.129 +6 -2 jakarta-tomcat/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-tomcat/build.xml,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- build.xml 2001/05/15 09:49:35 1.128
+++ build.xml 2001/05/15 13:03:03 1.129
@@ -124,8 +124,6 @@
file="${jaxp.home}/jaxp.jar"/>
<copy tofile="${tomcat.build}/lib/container/parser.jar"
file="${jaxp.home}/parser.jar"/>
- <copy tofile="${tomcat.build}/lib/container/jaxp.jar"
- file="${jaxp.home}/jaxp.jar"/>
<copy file ="src/build/readme/readme.container"
tofile="${tomcat.build}/lib/container/README" />
@@ -459,6 +457,12 @@
<target name="tests" depends="main,sanity-test,watchdog-web-based" />
+ <target name="test.war">
+ <jar jarfile="${tomcat.dist}/webapps/test.war"
+ basedir="${tomcat.build}/webapps/test"
+ includes="**"/>
+ </target>
+
<target name="tests.dist" depends="tests" >
<jar jarfile="${tomcat.dist}/webapps/test.war"
basedir="${tomcat.build}/webapps/test"