Hello I have a simple ant build script to generate javadoc for a bunch of projects.
The ant script is:
<project name="javadocs" default="doc" basedir=".">
What it looks like is happening is that Javadoc is being invoked with each java file as part of the parameter list, obviously this won't work because Windows has a limit on the size of the parameter that you can pass to programs. Any help appreciated as to how to make this work.