jakarta-commons-logging/jakarta-commons-logging-1.1.1-javadoc.patch

41 lines
1.4 KiB
Diff

--- build.xml 2010-10-30 21:21:49.000000000 +0200
+++ build.xml-gil 2010-10-30 21:16:19.000000000 +0200
@@ -640,6 +640,37 @@
</target>
+ <target name="javadoc" description="Generates the Javadoc of the application">
+ <mkdir dir='${build.home}/docs/apidocs'/>
+ <tstamp>
+ <format property="year" pattern="yyyy" />
+ </tstamp>
+ <javadoc sourcepath="${source.home}:${test.home}"
+ packagenames="*"
+ destdir="${build.home}/docs/apidocs"
+ access="protected"
+ old="false"
+ overview="${source.home}/org/apache/commons/logging/package.html"
+ verbose="false"
+ version="true"
+ use="true"
+ author="true"
+ splitindex="false"
+ nodeprecated="false"
+ nodeprecatedlist="false"
+ notree="false"
+ noindex="false"
+ nohelp="false"
+ nonavbar="false"
+ serialwarn="false"
+ charset="ISO-8859-1"
+ linksource="false"
+ breakiterator="false">
+ <doctitle><![CDATA[<h1>Commons Logging ${component.version} API</h1>]]></doctitle>
+ <bottom><![CDATA[<small>Copyright &#169; 2001-${year} <a href="http://commons.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small>]]></bottom>
+ </javadoc>
+ </target>
+
<target name="dist" depends="all,maven-docs-warning"
description="Create binary distribution">