larryi 2003/02/16 17:47:36 Modified: coyote build.xml Log: Allow some independence from the version of "util". Revision Changes Path 1.21 +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.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- build.xml 17 Feb 2003 01:03:49 -0000 1.20 +++ build.xml 17 Feb 2003 01:47:36 -0000 1.21 @@ -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 ============================================ --> @@ -81,7 +84,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="${commons-logging.jar}"/> <pathelement location="${commons-modeler.jar}"/> <pathelement location="${jmx.jar}"/> @@ -91,7 +94,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]