From 7d0916e46f34a51245a46ecc1d4a46c232395781 Mon Sep 17 00:00:00 2001 From: Jan Materne Date: Thu, 10 Apr 2014 09:40:35 +0000 Subject: [PATCH] By default disable JavaDocs Doclint which was introduced in Java8 and breaks the builds due not-strict-html JavaDoc comments. Could be enabled via -DwithDoclint=true git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1586251 13f79535-47bb-0310-9956-ffa450edef68 --- build.xml | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/build.xml b/build.xml index d1bac28e5..7aa0d995e 100644 --- a/build.xml +++ b/build.xml @@ -116,12 +116,13 @@ - + + + + + + + + @@ -1422,7 +1439,8 @@ windowtitle="${Name} API" doctitle="${Name}" failonerror="true" - verbose="${javadoc.verbose}"> + verbose="${javadoc.verbose}" + additionalparam="${javadoc.doclint.none}"> @@ -1454,7 +1472,8 @@ version="true" locale="en" windowtitle="${Name} Test Utilities" - doctitle="${Name}"> + doctitle="${Name}" + additionalparam="${javadoc.doclint.none}">