Just curious, why has the extra path element been added? I thought the docs failed to produce because of an out of memory issue in some cases?
2010/10/18 <[email protected]> > Author: sijskes > Date: Mon Oct 18 12:33:24 2010 > New Revision: 1023765 > > URL: http://svn.apache.org/viewvc?rev=1023765&view=rev > Log: > RIVER-326: doc target in qa/build.xml fails to produce documentation. > fixed. > > Modified: > incubator/river/jtsk/trunk/qa/build.xml > > Modified: incubator/river/jtsk/trunk/qa/build.xml > URL: > http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/qa/build.xml?rev=1023765&r1=1023764&r2=1023765&view=diff > > ============================================================================== > --- incubator/river/jtsk/trunk/qa/build.xml (original) > +++ incubator/river/jtsk/trunk/qa/build.xml Mon Oct 18 12:33:24 2010 > @@ -331,22 +331,23 @@ > <delete dir="${doc.api.dir}" quiet="true"/> > <mkdir dir="${doc.api.dir}"/> > > - <!-- TODO: find out why this takes so much memory on Windows --> > - <javadoc author="true" > - breakiterator="yes" > - destdir="${doc.api.dir}" > - doctitle="${javadoc.doc-title}" > - serialwarn="${verbose}" > - source="5" > - linkoffline="${jdk.doc.url} ${jdk.packages}" > - use="true" > - version="true" > - windowtitle="${javadoc.win-title}" > - maxmemory="256M" > - verbose="${verbose}"> > + <javadoc > + author="true" > + breakiterator="yes" > + destdir="${doc.api.dir}" > + doctitle="${javadoc.doc-title}" > + serialwarn="${verbose}" > + source="5" > + linkoffline="${jdk.doc.url} ${jdk.packages}" > + use="true" > + version="true" > + windowtitle="${javadoc.win-title}" > + maxmemory="256M" > + verbose="${verbose}" > + > > <bottom><![CDATA[${api.copyright}]]></bottom> > - <classpath refid="javadoc.classpath"/> > <sourcepath> > + <pathelement path="${src.dir}/../../src/"/> > <pathelement path="${src.dir}"/> > </sourcepath> > <package name="com.sun.jini.qa.*"/> > > >
