You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@apache.org on 2002/08/09 22:51:35 UTC

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

costin      2002/08/09 13:51:35

  Modified:    jk       build.xml
  Log:
  Use ${tomcat.util}.jar, don't copy it.
  
  Revision  Changes    Path
  1.46      +3 -3      jakarta-tomcat-connectors/jk/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/build.xml,v
  retrieving revision 1.45
  retrieving revision 1.46
  diff -u -r1.45 -r1.46
  --- build.xml	2 Jul 2002 19:45:49 -0000	1.45
  +++ build.xml	9 Aug 2002 20:51:35 -0000	1.46
  @@ -30,6 +30,7 @@
       <property name="coyote.home" 
   	      location="../coyote/build" />
       <property name="commons-logging.jar" location="../lib/commons-logging.jar" />
  +    <property name="tomcat-util.jar" location="../util/build/lib/tomcat-util.jar" />
   
       <property name="jmx.jar" location="../lib/mx4j.jar" />
   
  @@ -106,16 +107,15 @@
           <!-- util and coyote must be build first -->
           <copy  tofile="${jk.build}/lib/tomcat-coyote.jar"
                 file="../coyote/build/lib/tomcat-coyote.jar" />
  -        <copy  tofile="${jk.build}/lib/tomcat-util.jar"
  -              file="../util/build/lib/tomcat-util.jar" />
   
           <path id="build-main.classpath">
  +            <fileset dir="../lib" includes="*.jar" />
               <pathelement location="../util/build/classes"/>
               <pathelement location="${catalina.home}/server/lib/catalina.jar"/>
               <pathelement location="${catalina.home}/common/lib/servlet.jar"/>
               <pathelement location="${tomcat33.home}/lib/common/tomcat_core.jar"/>
               <pathelement location="${tomcat33.home}/lib/common/core_util.jar"/>
  -            <pathelement location="${jk.build}/lib/tomcat-util.jar" />
  +            <pathelement location="${tomcat-util.jar}" />
               <pathelement location="${commons-logging.jar}"/>
               <pathelement location="${jmx.jar}"/>
               <pathelement 
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>