Generating javadocs for fop ant task

2005-10-27 Thread Manuel Mall
I am having trouble automating an error free build of the javadocs target in our build.xml. The problem is that I am using a RPM install for ant (obviously I am talking Linux here). This places the ant.jar file not into ${ant.home}/lib but into /usr/share/java. This means the pathelement

Re: Generating javadocs for fop ant task

2005-10-27 Thread Manuel Mall
On Thu, 27 Oct 2005 03:03 pm, Mark C. Allman wrote: Since you're using Linux, try a symbolic link (ln -s /usr/share/java/ant.jar $ANT_HOME/lib/ant.jar )? Mark, yes sure but that's not quite what I am after. The problem I want to solve is to have a build.xml such that when users download the

Re: Generating javadocs for fop ant task

2005-10-27 Thread Mark C. Allman
As I typed my last e-mail, I suspected that wasn't what you were looking for (it's trivial!). Have you tried just adding the classpath as a pathelement instead of explicitly setting individual jars? I.e., pathelement path=${env.CLASSPATH} / instead of pathelement