Thomas Down wrote:

> Right now, the one place ant is behind build.Builder is that
> it doesn't do the nice grouping of packages in the javadoc output.
> I'll get that fixed in the next day or two.

use the group tag:

  <!-- Creates the API documentation -->
  <target name="javadocs" depends="init,prepare-src">
    <mkdir dir="${build.javadocs}"/>
    <javadoc packagenames="${packages}"
        sourcepath="${build.src}"
        destdir="${build.javadocs}"
        author="true"
        version="true"
        use="true"
        windowtitle="${Name} ${version} API Documentation"
        doctitle="${Name}:  ${description}"
    >
      <!-- <group title="Group name" packages="com.group1.*" /> -->
      <!-- <group title="Group name" packages="com.group2.*" /> -->
    </javadoc>

  </target>

   michael

_______________________________________________
Biojava-l mailing list  -  [EMAIL PROTECTED]
http://biojava.org/mailman/listinfo/biojava-l

Reply via email to