Hi,
I try to javadoc several packages at once. So I define the following target:
<target name="doc" depends="init">
<javadoc sourcepath="${src}" destdir="${doc}" packagenames="com.*
de.*" link="http://java.sun.com/j2se/1.3/docs/api/"/>
</target>
However, then I get this output:
E:\java>ant doc
Buildfile: build.xml
init:
doc:
[javadoc] Generating Javadoc
[javadoc] Parsing source files for packages
[javadoc] Javadoc execution
[javadoc] javadoc: No packages or classes specified.
{javadoc options listed here}
When I use only one packagename ("com.*"), the target works fine.
Am I missing something here?
Thanks for any help.
tomK