https://issues.apache.org/bugzilla/show_bug.cgi?id=46649
Quinn Taylor <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |WORKSFORME --- Comment #2 from Quinn Taylor <[email protected]> 2009-02-05 13:22:39 PST --- (In reply to comment #1) > > Maybe the command line is getting too long? Have you tried > useexternalfile="true"? > > What does Ant tell you it would be doing in -verbose mode? > Excellent catch! I used the verbose flag, and although Ant didn't print the entire command, the resulting output was sufficient to disclose the symptom. The classpath for the problematic project includes a whole heap of JAR files, as well as a lot of other options. (Those potential problems are less obvious in a build.xml, especiall with *.jar pattern matching.) I think what must have happened is that adding one-too-many external links cause the command to be truncated before any source files were specified, so Javadoc figured it had nothing to document. In the end, adding useexternalfile="true" solved the problem for me. Thanks! -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
