Browse Source

bz-63438 Undo part of commit 6656db28bb79912ec1c744f34affbda53f86e6fd, to fix broken javadocs target

master
Jaikiran Pai 5 years ago
parent
commit
dfeee59cca
4 changed files with 25 additions and 2 deletions
  1. +1
    -0
      CONTRIBUTORS
  2. +5
    -0
      WHATSNEW
  3. +15
    -2
      build.xml
  4. +4
    -0
      contributors.xml

+ 1
- 0
CONTRIBUTORS View File

@@ -9,6 +9,7 @@ Adrian Nistor
Adrien Grand
Aleksandr Ishutin
Alex Rosen
Alexander Grund
Alexei Yudichev
Alexey Panchenko
Alexey Solofnenko


+ 5
- 0
WHATSNEW View File

@@ -22,6 +22,11 @@ Fixed bugs:
exceptions that happen in @BeforeAll method of a test. This is now fixed.
Bugzilla Report 63850

* Building Ant from source could result in the javadocs target failing if the
optional dependencies were missing. This has now been fixed.
Bugzilla Report 63438


Other changes:
--------------



+ 15
- 2
build.xml View File

@@ -574,6 +574,17 @@
<parsersupports feature="http://java.sun.com/xml/jaxp/properties/schemaSource"/>
</or>
</condition>

<!--
Java8 introduced a HTML checker 'doclint' which is very strict and breaks
the build if there is a HTML error in the JavaDoc.
-->
<condition
property="javadoc.doclint.none"
value="-Xdoclint:none"
else="">
<not><isset property="withDoclint"/></not>
</condition>
</target>

<!--
@@ -1541,7 +1552,8 @@
windowtitle="${Name} API"
doctitle="${Name}"
maxmemory="1000M"
verbose="${javadoc.verbose}">
verbose="${javadoc.verbose}"
additionalparam="${javadoc.doclint.none}">

<packageset dir="${java.dir}"/>

@@ -1572,7 +1584,8 @@
version="true"
locale="en"
windowtitle="${Name} Test Utilities"
doctitle="${Name}">
doctitle="${Name}"
additionalparam="${javadoc.doclint.none}">

<!-- hide some meta information for javadoc -->
<tag name="pre" description="Precondition:" scope="all"/>


+ 4
- 0
contributors.xml View File

@@ -66,6 +66,10 @@
<first>Alex</first>
<last>Rosen</last>
</name>
<name>
<first>Alexander</first>
<last>Grund</last>
</name>
<name>
<first>Alexei</first>
<last>Yudichev</last>


Loading…
Cancel
Save