What actually happened is that it tried to rebuild xjavadoc, but did not have javaCC in the classpath to do it.
The build.xml of xdoclet contains this snippet :
<uptodate property="xjavadoc.uptodate"
targetfile="${lib.dir}/xjavadoc-${xjavadoc.version}.jar">
I would rather like
<property name="xjavadoc.jar" location="${lib.dir}/xjavadoc-${xjavadoc.version}.jar"/>
<uptodate property="xjavadoc.uptodate"
targetfile="${xjavadoc.jar}">
In the later case we can set the property xjavadoc.jar before the build of xdoclet starts, and then it will be found.
Are you OK that I should go ahead and ask the xdoclet guys to do this change ?
Antoine
Footnotes
[1] http://cvs.sourceforge.net/viewcvs.py/xdoclet/xdoclet/build.xml?view=markup
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
