Skip to content

Commit

Permalink
bz-63438 Undo part of commit 6656db2, to fix broken javadocs target
Browse files Browse the repository at this point in the history
  • Loading branch information
jaikiran committed Jan 10, 2020
1 parent 0433840 commit dfeee59
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Adrian Nistor
Adrien Grand
Aleksandr Ishutin
Alex Rosen
Alexander Grund
Alexei Yudichev
Alexey Panchenko
Alexey Solofnenko
Expand Down
5 changes: 5 additions & 0 deletions WHATSNEW
Original file line number Diff line number Diff line change
Expand Up @@ -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:
--------------

Expand Down
17 changes: 15 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

<!--
Expand Down Expand Up @@ -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}"/>

Expand Down Expand Up @@ -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"/>
Expand Down
4 changes: 4 additions & 0 deletions contributors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit dfeee59

Please sign in to comment.