Browse Source

javadoc creation of Ant's own sources failed on JDK 1.4. PR 46731. Patch submitted by Martin von Gagern

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@775914 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 16 years ago
parent
commit
bbea1d834d
4 changed files with 10 additions and 3 deletions
  1. +1
    -0
      CONTRIBUTORS
  2. +2
    -0
      build.xml
  3. +4
    -0
      contributors.xml
  4. +3
    -3
      src/main/org/apache/tools/ant/MagicNames.java

+ 1
- 0
CONTRIBUTORS View File

@@ -183,6 +183,7 @@ Martijn Kruithof
Martin Landers Martin Landers
Martin Poeschl Martin Poeschl
Martin van den Bemt Martin van den Bemt
Martin von Gagern
Mathieu Champlon Mathieu Champlon
Mathieu Peltier Mathieu Peltier
Matt Albrecht Matt Albrecht


+ 2
- 0
build.xml View File

@@ -1386,6 +1386,7 @@
locale="en" locale="en"
windowtitle="${Name} API" windowtitle="${Name} API"
doctitle="${Name}" doctitle="${Name}"
failonerror="true"
verbose="${javadoc.verbose}"> verbose="${javadoc.verbose}">


<packageset dir="${java.dir}"/> <packageset dir="${java.dir}"/>
@@ -1413,6 +1414,7 @@
<mkdir dir="${build.tests.javadocs}"/> <mkdir dir="${build.tests.javadocs}"/>
<javadoc useexternalfile="yes" <javadoc useexternalfile="yes"
destdir="${build.tests.javadocs}" destdir="${build.tests.javadocs}"
failonerror="true"
author="true" author="true"
version="true" version="true"
locale="en" locale="en"


+ 4
- 0
contributors.xml View File

@@ -759,6 +759,10 @@
<first>Martin</first> <first>Martin</first>
<last>van den Bemt</last> <last>van den Bemt</last>
</name> </name>
<name>
<first>Martin</first>
<last>von Gagern</last>
</name>
<name> <name>
<first>Mathieu</first> <first>Mathieu</first>
<last>Champlon</last> <last>Champlon</last>


+ 3
- 3
src/main/org/apache/tools/ant/MagicNames.java View File

@@ -143,22 +143,22 @@ public final class MagicNames {
/** /**
* property that provides the default value for javac's and * property that provides the default value for javac's and
* javadoc's source attribute. * javadoc's source attribute.
* @since Ant 1.7
* Value: {@value} * Value: {@value}
* @since Ant 1.7
*/ */
public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source"; public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source";


/** /**
* property that provides the default value for javac's target attribute. * property that provides the default value for javac's target attribute.
* @since Ant 1.7
* Value: {@value} * Value: {@value}
* @since Ant 1.7
*/ */
public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target"; public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target";


/** /**
* Name of the magic property that controls classloader reuse. * Name of the magic property that controls classloader reuse.
* @since Ant 1.4.
* Value: {@value} * Value: {@value}
* @since Ant 1.4.
*/ */
public static final String REFID_CLASSPATH_REUSE_LOADER = "ant.reuse.loader"; public static final String REFID_CLASSPATH_REUSE_LOADER = "ant.reuse.loader";




Loading…
Cancel
Save