Javadoc fails due to long command (I think)
First off, I'm a javadoc neophyte. I'm trying to get javadoc working via an Ant script. Our project has many, many, many classes so that when I try to do something like this:
<javadoc public="true" windowtitle="testJavaDoc"
classpath="C:\cc\projectA\Build\BuildTools\3rdParty\Win32\IBM-JDK-1.4.2\bin"
destdir="${javadoc.doc.dir}/html"
packagenames="com.ibm.projectA.*"
sourcepath="${root}">
<classpath>
<pathelement path="${classpath}"/>
<fileset dir="${dist}/lib">
<include name="**/*.jar"/>
</fileset>
</classpath>
<fileset dir="${root}/Application/JavaSource/com/ibm/projectA/app">
<include name="**/*.java"/>
</fileset>
</javadoc>
I get "Javadoc failed: java.io.IOException: CreateProcess: C:\.....". I assume this is because the generated command is way too long. Any idea how I combat this? I have barely got into all the class files I need!

