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 Poeschl
Martin van den Bemt
Martin von Gagern
Mathieu Champlon
Mathieu Peltier
Matt Albrecht


+ 2
- 0
build.xml View File

@@ -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"


+ 4
- 0
contributors.xml View File

@@ -759,6 +759,10 @@
<first>Martin</first>
<last>van den Bemt</last>
</name>
<name>
<first>Martin</first>
<last>von Gagern</last>
</name>
<name>
<first>Mathieu</first>
<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
* 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";



Loading…
Cancel
Save