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/11/13 01:14:25 UTC

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

costin      2002/11/12 16:14:25

  Modified:    http11   build.xml
  Log:
  A small change to allow 'compile only' in a separate dir.
  
  Revision  Changes    Path
  1.9       +13 -6     jakarta-tomcat-connectors/http11/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/http11/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build.xml	16 Mar 2002 03:51:25 -0000	1.8
  +++ build.xml	13 Nov 2002 00:14:25 -0000	1.9
  @@ -146,9 +146,9 @@
       </javadoc>
     </target>
   
  +  <target name="compile-only" 
  +          description="Compile shareable components">
   
  -  <target name="compile" depends="static"
  -   description="Compile shareable components">
       <javac  srcdir="${source.home}"
              destdir="${build.home}/classes"
                debug="${compile.debug}"
  @@ -159,13 +159,20 @@
       <copy    todir="${build.home}/classes" filtering="on">
         <fileset dir="${source.home}" excludes="**/*.java"/>
       </copy>
  -    <jar    jarfile="${build.home}/lib/tomcat-${component.name}.jar"
  +    <property name="tomcat-http11.jar" value="${build.home}/lib/tomcat-${component.name}.jar"/>
  +    <jar    jarfile="${tomcat-http11.jar}"
               basedir="${build.home}/classes"
  -           manifest="${build.home}/conf/MANIFEST.MF"/>
  +             manifest="${conf.home}/MANIFEST.MF">
  +      <include name="org/apache/coyote/http11/**"/>
  +    </jar>
  +  </target>
  +
  +  <target name="compile" depends="static,compile-only"
  +          description="Compile shareable components">
       <jar jarfile="${build.home}/lib/tomcat33-resource.jar"
               basedir="${build.home}/classes" 
   	    includes="**/*.properties" />
  -            
  +
       <copy      file="${tomcat-util.jar}" 
                tofile="${build.home}/lib/tomcat-util.jar" />
       <copy      file="${tomcat-coyote.jar}" 
  
  
  

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