You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/10/10 08:03:02 UTC

[4/7] activemq-artemis git commit: javadoc: Enable all but missing and syntax doclint checks

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� <vi...@iki.fi>
Authored: Sun Oct 9 17:14:57 2016 +0300
Committer: Clebert Suconic <cl...@apache.org>
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>