View | Details | Raw Unified | Return to bug 46731
Collapse All | Expand All

(-)apache-ant-1.7.1/src/main/org/apache/tools/ant/MagicNames.java (-3 / +3 lines)
Lines 143-164 public final class MagicNames { Link Here
143
    /**
143
    /**
144
     * property that provides the default value for javac's and
144
     * property that provides the default value for javac's and
145
     * javadoc's source attribute.
145
     * javadoc's source attribute.
146
     * @since Ant 1.7
147
     * Value: {@value}
146
     * Value: {@value}
147
     * @since Ant 1.7
148
     */
148
     */
149
    public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source";
149
    public static final String BUILD_JAVAC_SOURCE = "ant.build.javac.source";
150
150
151
    /**
151
    /**
152
     * property that provides the default value for javac's target attribute.
152
     * property that provides the default value for javac's target attribute.
153
     * @since Ant 1.7
154
     * Value: {@value}
153
     * Value: {@value}
154
     * @since Ant 1.7
155
     */
155
     */
156
    public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target";
156
    public static final String BUILD_JAVAC_TARGET = "ant.build.javac.target";
157
157
158
    /**
158
    /**
159
     * Name of the magic property that controls classloader reuse.
159
     * Name of the magic property that controls classloader reuse.
160
     * @since Ant 1.4.
161
     * Value: {@value}
160
     * Value: {@value}
161
     * @since Ant 1.4.
162
     */
162
     */
163
    public static final String REFID_CLASSPATH_REUSE_LOADER = "ant.reuse.loader";
163
    public static final String REFID_CLASSPATH_REUSE_LOADER = "ant.reuse.loader";
164
164
(-)apache-ant-1.7.1/build.xml (+2 lines)
Lines 1483-1488 Link Here
1483
      locale="en"
1483
      locale="en"
1484
      windowtitle="${Name} API"
1484
      windowtitle="${Name} API"
1485
      doctitle="${Name}"
1485
      doctitle="${Name}"
1486
      failonerror="true"
1486
      verbose="${javadoc.verbose}">
1487
      verbose="${javadoc.verbose}">
1487
1488
1488
      <packageset dir="${java.dir}"/>
1489
      <packageset dir="${java.dir}"/>
Lines 1510-1515 Link Here
1510
    <mkdir dir="${build.tests.javadocs}"/>
1511
    <mkdir dir="${build.tests.javadocs}"/>
1511
    <javadoc useexternalfile="yes"
1512
    <javadoc useexternalfile="yes"
1512
      destdir="${build.tests.javadocs}"
1513
      destdir="${build.tests.javadocs}"
1514
      failonerror="true"
1513
      author="true"
1515
      author="true"
1514
      version="true"
1516
      version="true"
1515
      locale="en"
1517
      locale="en"

Return to bug 46731