[Biojava-l] Re: Biojava-l digest, Vol 1 #263 - 7 msgs
Michael L. Heuer
heuermh@primushost.com
Mon, 5 Mar 2001 14:24:47 -0500 (EST)
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