This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch 1.9.x
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/1.9.x by this push:
     new 7d7c06f3f bz-63438 Undo part of commit 
67f29ce0c2ad332570c0a1382c79532cee66dce8, to fix broken javadocs target
     new 6946fb59b Merge pull request #190 from chrstphrchvz/backport-63438
7d7c06f3f is described below

commit 7d7c06f3f692643e9f2609d0792539bbf29d39ee
Author: Jaikiran Pai <jaiki...@apache.org>
AuthorDate: Wed Jun 22 07:26:31 2022 -0500

    bz-63438 Undo part of commit 67f29ce0c2ad332570c0a1382c79532cee66dce8, to 
fix broken javadocs target
    
    Backported from 1.10.x: dfeee59cca730e1b1346564bf2fe1bf4a81f9549
---
 CONTRIBUTORS     | 1 +
 WHATSNEW         | 5 +++++
 build.xml        | 6 ++++--
 contributors.xml | 4 ++++
 4 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 7005c7562..c51db08fe 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -6,6 +6,7 @@ Adam Sotona
 Adrian Nistor
 Aleksandr Ishutin
 Alex Rosen
+Alexander Grund
 Alexei Yudichev
 Alexey Panchenko
 Alexey Solofnenko
diff --git a/WHATSNEW b/WHATSNEW
index 7991cd4b3..487149a9b 100644
--- a/WHATSNEW
+++ b/WHATSNEW
@@ -22,6 +22,11 @@ Fixed bugs:
    timestamps of files transferred recursively from a server.
    Bugzilla Report 66001
 
+ * 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:
 --------------
 
diff --git a/build.xml b/build.xml
index 56f450a65..3636bf7cc 100644
--- a/build.xml
+++ b/build.xml
@@ -1399,7 +1399,8 @@
              windowtitle="${Name} API"
              doctitle="${Name}"
              maxmemory="1000M"
-             verbose="${javadoc.verbose}">
+             verbose="${javadoc.verbose}"
+             additionalparam="${javadoc.doclint.none}">
 
       <packageset dir="${java.dir}"/>
 
@@ -1430,7 +1431,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"/>
diff --git a/contributors.xml b/contributors.xml
index a62b1d477..8e161bc9e 100644
--- a/contributors.xml
+++ b/contributors.xml
@@ -54,6 +54,10 @@
     <first>Alex</first>
     <last>Rosen</last>
   </name>
+  <name>
+    <first>Alexander</first>
+    <last>Grund</last>
+  </name>
   <name>
     <first>Alexei</first>
     <last>Yudichev</last>

Reply via email to