Changeset 3254

Show
Ignore:
Timestamp:
05/01/11 20:52:00
Author:
douglm
Message:

Add a javadoc ant macro

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/buildTools/deftasks.xml

    r3230 r3254  
    8989 
    9090      <import file="${build.dir}/buildTools/getJar.xml"/> 
     91      <import file="${build.dir}/buildTools/jdoc.xml"/> 
    9192    </sequential> 
    9293  </macrodef> 
     
    211212  <!-- Override this --> 
    212213  <target name="init" /> 
     214   
     215  <!-- Override this --> 
     216  <target name="build-init" /> 
    213217 
    214218  <!-- Override this --> 
     
    258262  <target name="build-all" depends="build" 
    259263          description="Compile access control classes"/> 
     264   
     265  <target name="javadoc" depends="build-init" 
     266          description="Create Javadoc API documentation"> 
     267    <jdoc/> 
     268  </target> 
    260269   
    261270  <macrodef name="build-jar-stats">