Author: markt Date: Sat Apr 5 13:11:16 2008 New Revision: 645169 URL: http://svn.apache.org/viewvc?rev=645169&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=44759 Need source to generate javadocs Patch provided by Stephen Bannasch.
Modified: tomcat/trunk/dist.xml Modified: tomcat/trunk/dist.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/dist.xml?rev=645169&r1=645168&r2=645169&view=diff ============================================================================== --- tomcat/trunk/dist.xml (original) +++ tomcat/trunk/dist.xml Sat Apr 5 13:11:16 2008 @@ -356,14 +356,15 @@ </target> - <target name="dist-javadoc" description="Create the Tomcat javadoc" > + <target name="dist-javadoc" depends="dist-source" + description="Create the Tomcat javadoc" > <javadoc packagenames="org.apache.*" sourcepath="${tomcat.dist}/src/java" destdir="${tomcat.dist}/webapps/docs/api" author="true" version="true" windowtitle="Tomcat API Documentation" doctitle="Tomcat API" - bottom="Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved." + bottom="Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved." additionalparam="-breakiterator" maxmemory="256m" > </javadoc> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]