You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by la...@apache.org on 2003/02/17 02:49:12 UTC

cvs commit: jakarta-tomcat-connectors/http11 build.xml

larryi      2003/02/16 17:49:12

  Modified:    http11   build.xml
  Log:
  Allow some independence from the version of "util", and "coyote" if desired.
  
  Revision  Changes    Path
  1.11      +8 -4      jakarta-tomcat-connectors/http11/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/http11/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build.xml	16 Jan 2003 22:29:51 -0000	1.10
  +++ build.xml	17 Feb 2003 01:49:12 -0000	1.11
  @@ -21,15 +21,19 @@
     <!-- 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"/>
  +  <property name="coyote.home" value="../coyote"/>
  +
   
   <!-- ========== Derived Values ============================================ -->
   
   
     <!-- The locations of necessary jar files -->
  -  <property name="tomcat-util.jar"  value="../util/build/lib/tomcat-util.jar"/>
  -  <property name="tomcat-coyote.jar" value="../coyote/build/lib/tomcat-coyote.jar"/>
  +  <property name="tomcat-util.jar"  value="${util.home}/build/lib/tomcat-util.jar"/>
  +  <property name="tomcat-coyote.jar" value="${coyote.home}/build/lib/tomcat-coyote.jar"/>
     <property name="tomcat33-coyote.jar" 
  -          value="../coyote/build/lib/tomcat33-coyote.jar"/>
  +          value="${coyote.home}/build/lib/tomcat33-coyote.jar"/>
     <property name="junit.jar"        value="${junit.home}/junit.jar"/>
     <property name="jmx.jar" location="../lib/mx4j.jar" />
     <property name="commons-modeler.jar" location="../../jakarta-commons/modeler/dist/commons-modeler.jar" />
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org