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 2003/04/08 05:54:33 UTC

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

costin      2003/04/07 20:54:32

  Modified:    jk       build.xml
  Log:
  Add index. Skip docs if flag is set.
  
  Copy xml files ( the mbeans-descriptors )
  
  Revision  Changes    Path
  1.66      +12 -3     jakarta-tomcat-connectors/jk/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/build.xml,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- build.xml	4 Mar 2003 18:12:49 -0000	1.65
  +++ build.xml	8 Apr 2003 03:54:32 -0000	1.66
  @@ -200,23 +200,30 @@
           <property name="tomcat-jni.jar" value="${jk.build}/lib/tomcat-jni.jar" />
   
   	<jar jarfile="${tomcat-jk.jar}"
  +             index="true"
   	     basedir="${jk.build}/classes">
               <include name="org/apache/ajp/**" />
           </jar>
   	
   	<jar jarfile="${tomcat-jkconfig.jar}"
  +             index="true"
   	     basedir="${jk.build}/classes" 
                manifest="conf/jkconfig.manifest">
               <include name="org/apache/ajp/config/**" />
           </jar>
   	
   	<jar jarfile="${tomcat-jkshm.jar}"
  +             index="true"
   	     basedir="${jk.build}/classes" 
                manifest="conf/shm.manifest">
               <include name="org/apache/ajp/common/Shm.class" />
           </jar>
  -	
  +
  +        <copy todir="${jk.build}/classes" >
  +          <fileset dir="java" includes="**/*.xml" />
  +        </copy>
   	<jar jarfile="${tomcat-jk2.jar}"
  +             index="true"
                manifest="conf/tomcat-jk2.manifest"
   	     basedir="${jk.build}/classes" >
               <include name="org/apache/jk/**" />
  @@ -224,6 +231,7 @@
           </jar>
   	
   	<jar jarfile="${tomcat-jni.jar}"
  +             index="true"
   	     basedir="${jk.build}/classes" 
                manifest="conf/jk2.manifest" >
               <include name="org/apache/jk/apr/**" />
  @@ -245,6 +253,7 @@
   	<copy todir="${jk.build}/classes/META-INF" 
                 file="jkant/ant.tasks"/>
   	<jar jarfile="${jk.build}/lib/jkant.jar"
  +             index="true"
   	     basedir="${jk.build}/classes" >
               <include name="org/apache/jk/ant/**" />
               <include name="META-INF/ant.tasks" />
  @@ -317,7 +326,7 @@
       </target>
   
       <!-- ================ javadocs =================== -->
  -    <target name="javadoc">
  +    <target name="javadoc" unless="docs-uptodate">
           <delete dir="${jk.build}/javadoc"/>
   	<mkdir dir="${jk.build}/javadoc"/>
   	<javadoc packagenames="org.apache.ajp,org.apache.ajp.tomcat4,org.apache.ajp,org.apache.ajp.tomcat5"
  @@ -426,7 +435,7 @@
       Generate documentation from the XML sources.
     -->
     <target
  -      name="docs"
  +      name="docs" unless="docs-uptodate"
         depends="docs.check,docs.init"
         description="Create Documentation">
    
  
  
  

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