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/03/16 08:05:44 UTC

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

costin      2003/03/15 23:05:44

  Modified:    coyote   build.xml
  Log:
  Added a flag to disable javadoc.
  
  I also inserted index=true - it seems that may speed up some things
  in jdk1.4+ ( and it doesn't hurt otherwise )
  
  Revision  Changes    Path
  1.23      +9 -6      jakarta-tomcat-connectors/coyote/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/build.xml,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- build.xml	13 Mar 2003 18:00:51 -0000	1.22
  +++ build.xml	16 Mar 2003 07:05:44 -0000	1.23
  @@ -226,6 +226,7 @@
   
     <target name="jar.tomcat5" depends="compile.shared,compile.tomcat5" >
       <jar  jarfile="${tomcat-coyote.jar}"
  +         index="true"
            basedir="${build.home}/classes"
            manifest="${conf.home}/MANIFEST.MF"
            excludes="**/tomcat3/*" >
  @@ -269,15 +270,17 @@
      depends="static,report,compile.shared,compile.tomcat5,compile.tomcat4,compile.tomcat33"
      description="Compile Coyote and its Adapters">
       <jar    jarfile="${build.home}/lib/tomcat-${component.name}.jar"
  +            index="true"
               basedir="${build.home}/classes"
              manifest="${build.home}/conf/MANIFEST.MF"
              includes="org/apache/coyote/**" 
   	   excludes="**/tomcat3/*" />
       <jar    jarfile="${build.home}/lib/tomcat33-${component.name}.jar"
  -            basedir="${build.home}/classes"
  -           manifest="${build.home}/conf/MANIFEST.MF"
  -           includes="org/apache/coyote/**" 
  -	   excludes="**/tomcat4/*" />
  +         index="true"
  +         basedir="${build.home}/classes"
  +         manifest="${build.home}/conf/MANIFEST.MF"
  +         includes="org/apache/coyote/**" 
  +         excludes="**/tomcat4/*" />
     </target>
   
     <target name="compile.tests" depends="compile"
  @@ -305,7 +308,7 @@
      description="Clean and compile all components"/>
   
   
  -  <target name="javadoc"
  +  <target name="javadoc" unless="docs-uptodate"
      description="Create component Javadoc documentation">
       <mkdir dir="${build.home}/docs/api"/>
       <javadoc sourcepath="${source.home}"
  
  
  

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