[Biojava-l] Re: Biojava-l digest, Vol 1 #287 - 5 msgs

Michael L. Heuer heuermh@primushost.com
Wed, 4 Apr 2001 12:29:57 -0400 (EDT)


Jason Stajich wrote:

> Can we pass in cmdline params to ant to specify a larger stack size?

There is an additionalparam tag in the javadoc task; I assume there is the
same thing in the javac task:


    <javadoc packagenames="${packages}"
        sourcepath="${src.dir}"
        destdir="${docs.dir}"
        author="true"
        version="true"
        use="true"
        additionalparam="-J-Xms5000m -J-Xmx10000m"
        windowtitle="${Name} ${version} API Documentation"
        doctitle="${Name}:  ${description}"
    >

   michael