costin 02/04/05 11:11:05 Modified: . build.xml coyote build.xml Log: Few small fixes. I build all the stuff in one jar for easier testing. I'm also experimenting with the order and with removing util from 3.3. Revision Changes Path 1.2 +11 -0 jakarta-tomcat-connectors/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/build.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- build.xml 4 Apr 2002 20:25:03 -0000 1.1 +++ build.xml 5 Apr 2002 19:11:05 -0000 1.2 @@ -25,4 +25,15 @@ </jar> </target> + + <target name="clean" + description="Compile Coyote and all related protocols"> + <ant dir="util" target="clean" /> + <ant dir="coyote" target="clean" /> + <ant dir="http11" target="clean"/> + <ant dir="jk" target="clean" /> + + <delete file="jtc.jar" /> + </target> + </project> 1.7 +5 -2 jakarta-tomcat-connectors/coyote/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/build.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- build.xml 10 Mar 2002 06:15:47 -0000 1.6 +++ build.xml 5 Apr 2002 19:11:05 -0000 1.7 @@ -3,7 +3,7 @@ <!-- "Coyote" connector framework for Jakarta Tomcat - $Id: build.xml,v 1.6 2002/03/10 06:15:47 billbarker Exp $ + $Id: build.xml,v 1.7 2002/04/05 19:11:05 costin Exp $ --> @@ -74,15 +74,19 @@ <!-- Construct compile classpath --> <path id="compile.classpath"> <pathelement location="${build.home}/classes"/> + <pathelement location="../util/build/classes"/> <pathelement location="${tomcat-util.jar}"/> <pathelement location="${catalina.home}/server/lib/catalina.jar"/> <pathelement location="${catalina.home}/common/lib/servlet.jar"/> </path> <path id="compile.classpath.tomcat33"> <pathelement location="${build.home}/classes"/> + <pathelement location="../util/build/classes"/> <pathelement location="${tomcat33.home}/lib/container/tomcat_util.jar"/> + <pathelement location="${tomcat33.home}/lib/container/jtc.jar"/> <pathelement location="${tomcat33.home}/lib/container/tomcat_modules.jar"/> <pathelement location="${tomcat33.home}/lib/common/tomcat_core.jar"/> + <pathelement location="${tomcat33.home}/lib/common/core_util.jar"/> </path> @@ -212,7 +216,6 @@ includes="org/apache/coyote/**" excludes="**/tomcat4/*" /> </target> - <target name="compile.tests" depends="compile" description="Compile unit test cases">
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>