larryi 2003/02/16 17:48:08 Modified: coyote Tag: coyote_10 build.xml Log: Allow some independence from the version of "util". Revision Changes Path No revision No revision 1.16.2.1 +6 -3 jakarta-tomcat-connectors/coyote/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/build.xml,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -u -r1.16 -r1.16.2.1 --- build.xml 11 Jan 2003 00:03:01 -0000 1.16 +++ build.xml 17 Feb 2003 01:48:08 -0000 1.16.2.1 @@ -21,6 +21,9 @@ <!-- The directories corresponding to your necessary dependencies --> <property name="junit.home" value="/usr/local/junit3.5"/> + <!-- Dependencies within jakarta-tomcat-connectors --> + <property name="util.home" value="../util"/> + <!-- ========== Derived Values ============================================ --> @@ -77,7 +80,7 @@ <!-- Construct compile classpath --> <path id="compile.classpath"> <pathelement location="${build.home}/classes"/> - <pathelement location="../util/build/classes"/> + <pathelement location="${util.home}/build/classes"/> <pathelement location="${jmx.jar}"/> <pathelement location="${tomcat-util.jar}"/> <pathelement location="${catalina.home}/server/lib/catalina.jar"/> @@ -85,7 +88,7 @@ </path> <path id="compile.classpath.tomcat33"> <pathelement location="${build.home}/classes"/> - <pathelement location="../util/build/classes"/> + <pathelement location="${util.home}/build/classes"/> <pathelement location="${tomcat33.home}/lib/container/container_util.jar"/> <pathelement location="${tomcat33.home}/lib/container/tomcat_modules.jar"/> <pathelement location="${tomcat33.home}/lib/common/tomcat_core.jar"/>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]