PHOENIX-4774 Disable doclint in 1.8+ JDKs

Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/be882e91
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/be882e91
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/be882e91

Branch: refs/heads/4.x-cdh5.14
Commit: be882e911a063d4dbb38b6dc4b248fc335e555be
Parents: 3aaff76
Author: Alex Araujo <alexara...@gmail.com>
Authored: Tue Jun 5 11:20:17 2018 -0700
Committer: Vincent Poon <vincentp...@apache.org>
Committed: Wed Jun 6 11:21:11 2018 -0700

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


http://git-wip-us.apache.org/repos/asf/phoenix/blob/be882e91/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index bea1199..e55b080 100644
--- a/pom.xml
+++ b/pom.xml
@@ -451,6 +451,9 @@
               <!-- TODO turn back on javadocs - disabled now for testing -->
               <!-- <goal>jar</goal> -->
             </goals>
+            <configuration>
+              <additionalparam>${javadoc.opts}</additionalparam>
+            </configuration>
           </execution>
         </executions>
       </plugin>
@@ -1004,6 +1007,16 @@
   </dependencyManagement>
 
   <profiles>
+    <!-- disable doclint with 1.8+ JDKs-->
+    <profile>
+      <id>java8-doclint-disabled</id>
+      <activation>
+        <jdk>[1.8,)</jdk>
+      </activation>
+      <properties>
+        <javadoc.opts>-Xdoclint:none</javadoc.opts>
+      </properties>
+    </profile>
     <!-- this profile should be activated for release builds -->
     <profile>
       <id>release</id>

Reply via email to