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 2015/02/17 18:17:25 UTC

[3/4] activemq-6 git commit: Disable doclint error checking

Disable doclint error checking

Introduction of DocLint in Java 8 results in strict error checking in
JavaDocs.  What were previously on warnings on JavaDoc generation now
results in errors.  This is causing issues when using the apache release
plugin.  Disabling doclint error checking for the time being.


Project: http://git-wip-us.apache.org/repos/asf/activemq-6/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-6/commit/33a69518
Tree: http://git-wip-us.apache.org/repos/asf/activemq-6/tree/33a69518
Diff: http://git-wip-us.apache.org/repos/asf/activemq-6/diff/33a69518

Branch: refs/heads/master
Commit: 33a69518620d92d893cb6f531ce4e10a3f43e578
Parents: 11373d0
Author: Martyn Taylor <mt...@redhat.com>
Authored: Mon Feb 16 14:59:15 2015 +0000
Committer: Martyn Taylor <mt...@redhat.com>
Committed: Mon Feb 16 15:04:51 2015 +0000

----------------------------------------------------------------------
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-6/blob/33a69518/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 40346a2..f1fd6c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,6 +77,7 @@
       <skipRestTests>true</skipRestTests>
       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
       <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+      <additionalparam>-Xdoclint:none</additionalparam>
 
      <!--
 
@@ -648,6 +649,7 @@
             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
+               
                <version>2.9</version>
             </plugin>
             <plugin>