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
Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/c7088367 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/c7088367 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/c7088367 Branch: refs/heads/master Commit: c70883674f3c75d915679493ba23c8982cce98df Parents: 30809c0 Author: Ville Skyttä <[email protected]> Authored: Sun Oct 9 17:14:57 2016 +0300 Committer: Clebert Suconic <[email protected]> Committed: Mon Oct 10 10:02:49 2016 +0200 ---------------------------------------------------------------------- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/c7088367/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index b1c81ea..319132e 100644 --- a/pom.xml +++ b/pom.xml @@ -692,7 +692,11 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> - <additionalparam>-Xdoclint:none</additionalparam> + <additionalparam> + -Xdoclint:all + -Xdoclint:-missing + -Xdoclint:-syntax + </additionalparam> </configuration> </plugin> </plugins>
