From c70883674f3c75d915679493ba23c8982cce98df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 9 Oct 2016 17:14:57 +0300 Subject: [PATCH] javadoc: Enable all but missing and syntax doclint checks Using multiple -Xdoclint options instead of one with all,-missing,-syntax because of https://issues.apache.org/jira/browse/MJAVADOC-368 --- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1c81ea799..319132e244 100644 --- a/pom.xml +++ b/pom.xml @@ -692,7 +692,11 @@ org.apache.maven.plugins maven-javadoc-plugin - -Xdoclint:none + + -Xdoclint:all + -Xdoclint:-missing + -Xdoclint:-syntax +