1 2 3 4 5 6 7 8 9 10 11 12 13
|
Description: Remove the build date from the Javadoc files to make the build reproducible
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/build.xml
+++ b/build.xml
@@ -256,6 +256,7 @@
<javadoc packagenames="${packages}" sourcepath="${basedir}/${src.dir}"
destdir="${javadoc.dir}" author="true" version="true"
windowtitle="${Name} ${version} API" doctitle="${Name}"
+ additionalparam="-notimestamp"
footer="Copyright &copy; 2000-2008 Russell Gold. See <a target="_top" href="../license.html">license agreement</A> for rights granted." >
<classpath refid="base.classpath"/>
</javadoc>
|