costin 02/04/04 12:25:04
Added: . build.xml
Log:
One (experimental) build file to get all the coyote things built
and in a single jar. It just calls the ant files in various directories
in the right order and creates a jar file with all the stuff.
Revision Changes Path
1.1 jakarta-tomcat-connectors/build.xml
Index: build.xml
===================================================================
<project name="Jtc" default="coyote" basedir=".">
<!-- ========== Initialize Properties ===================================== -->
<property file="build.properties"/> <!-- Component local -->
<property file="${user.home}/build.properties"/> <!-- User local -->
<target name="coyote"
description="Compile Coyote and all related protocols">
<ant dir="util" />
<ant dir="coyote" target="compile" />
<ant dir="http11" />
<ant dir="jk" />
<jar jarfile="jtc.jar"
manifest="coyote/src/conf/MANIFEST.MF" >
<fileset dir="util/build/classes" includes="org/apache/**" />
<fileset dir="coyote/build/classes" includes="org/apache/coyote/**" />
<fileset dir="http11/build/classes" includes="org/apache/coyote/**" />
<fileset dir="jk/build/WEB-INF/classes" >
<include name="org/apache/**" />
<exclude name="org/apache/jk/ant/**" />
</fileset>
</jar>
</target>
</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>