I took a shot at using a replaceregexp task in build.xml to strip out the "Generate by javadoc on..." comments in the generate Javadoc. That much worked, but the jar file still has embedded timestamps so my goal of having a completely reproducible distribution appears to be unachievable. So I dropped it.

However while looking at it, I discovered that all the links to J2SE classes (like String, StringBuilder, etc) are broken. There did not appear to be a bug logged for it. I think it would be something we'd want to fix before release, but I'll let the release manager make the call. The fix is:

Index: build.xml
===================================================================
RCS file: /home/cvs/logging-log4j/build.xml,v
retrieving revision 1.34.2.35
diff -u -r1.34.2.35 build.xml
--- build.xml    23 Aug 2005 05:26:55 -0000    1.34.2.35
+++ build.xml    23 Aug 2005 23:01:12 -0000
@@ -434,7 +434,7 @@
              header="<b>Log4j ${version}</b>"
              bottom="Copyright 2000-2005 Apache Software Foundation.">
-      <link href="http://java.sun.com/products/jdk/1.3/docs/api/"/>
+      <link href="http://java.sun.com/j2se/1.3/docs/api/"/>
       <link href="http://java.sun.com/j2ee/sdk_1.3/techdocs/api/"/>
       <classpath refid="compile.classpath"/>
     </javadoc>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to