You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@apache.org on 2001/10/03 01:48:24 UTC

cvs commit: jakarta-tomcat-4.0 build.xml

craigmcc    01/10/02 16:48:24

  Modified:    .        build.xml
  Log:
  Set defaults for tomcat-ajp.jar and tomcat-util.jar that cover the normal
  case of using the checked-in JAR files.  This avoids the need to have a
  Tomcat-local "build.properties" to compile at all (or have Tomcat-specific
  properties in your ${user.home}/build.properties file).
  
  Revision  Changes    Path
  1.43      +3 -0      jakarta-tomcat-4.0/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/build.xml,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- build.xml	2001/09/28 16:35:08	1.42
  +++ build.xml	2001/10/02 23:48:24	1.43
  @@ -18,6 +18,9 @@
     <property name="webapps.build"    value="${basedir}/webapps/build"/>
     <property name="webapps.dist"     value="${basedir}/webapps/dist"/>
   
  +  <!-- Default AJP and UTIL components for the usual case -->
  +  <property name="tomcat-ajp.jar"   value="${basedir}/lib/tomcat-ajp.jar"/>
  +  <property name="tomcat-util.jar"  value="${basedir}/lib/tomcat-util.jar"/>
   
   
     <!-- =================== DETECT: Display configuration ================== -->