Author: bodewig
Date: Mon May 18 12:10:02 2009
New Revision: 775914
URL: http://svn.apache.org/viewvc?rev=775914&view=rev
Log:
javadoc creation of Ant's own sources failed on JDK 1.4. PR 46731. Patch
submitted by Martin von Gagern
Modified:
ant/core/trunk/CONTRIBUTORS
ant/core/trunk/build.xml
ant/core/trunk/contributors.xml
ant/core/trunk/src/main/org/apache/tools/ant/MagicNames.java
Modified: ant/core/trunk/CONTRIBUTORS
URL:
http://svn.apache.org/viewvc/ant/core/trunk/CONTRIBUTORS?rev=775914&r1=775913&r2=775914&view=diff
==============================================================================
Binary files - no diff available.
Modified: ant/core/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=775914&r1=775913&r2=775914&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Mon May 18 12:10:02 2009
@@ -1386,6 +1386,7 @@
locale="en"
windowtitle="${Name} API"
doctitle="${Name}"
+ failonerror="true"
verbose="${javadoc.verbose}">
<packageset dir="${java.dir}"/>
@@ -1413,6 +1414,7 @@
<mkdir dir="${build.tests.javadocs}"/>
<javadoc useexternalfile="yes"
destdir="${build.tests.javadocs}"
+ failonerror="true"
author="true"
version="true"
locale="en"
Modified: ant/core/trunk/contributors.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/contributors.xml?rev=775914&r1=775913&r2=775914&view=diff
==============================================================================
--- ant/core/trunk/contributors.xml (original)
+++ ant/core/trunk/contributors.xml Mon May 18 12:10:02 2009
@@ -760,6 +760,10 @@
<last>van den Bemt</last>
</name>
<name>
+ <first>Martin</first>
+ <last>von Gagern</last>
+ </name>
+ <name>
<first>Mathieu</first>
<last>Champlon</last>
</name>
Modified: ant/core/trunk/src/main/org/apache/tools/ant/MagicNames.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/MagicNames.java?rev=775914&r1=775913&r2=775914&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/MagicNames.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/MagicNames.java Mon May 18
12:10:02 2009
@@ -143,22 +143,22 @@
/**
* property that provides the default value for javac's and
* javadoc's source attribute.
- * @since Ant 1.7
* Value: {...@value}
+ * @since Ant 1.7
*/
public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source";
/**
* property that provides the default value for javac's target attribute.
- * @since Ant 1.7
* Value: {...@value}
+ * @since Ant 1.7
*/
public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target";
/**
* Name of the magic property that controls classloader reuse.
- * @since Ant 1.4.
* Value: {...@value}
+ * @since Ant 1.4.
*/
public static final String REFID_CLASSPATH_REUSE_LOADER =
"ant.reuse.loader";