You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by hu...@apache.org on 2019/06/02 23:54:12 UTC

[helix] branch master updated: Disable JavaDoc check in pom.xml

This is an automated email from the ASF dual-hosted git repository.

hulee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b5f95e  Disable JavaDoc check in pom.xml
5b5f95e is described below

commit 5b5f95e5ca43dba942ad965aa82bd2d88901ebfc
Author: Hunter Lee <hu...@linkedin.com>
AuthorDate: Sun Jun 2 16:54:03 2019 -0700

    Disable JavaDoc check in pom.xml
    
    Java started enforcing JavaDoc lint checks going from Java 7 to Java 8. Since the codebase has a lot of JavaDoc that does not pass the lint check, we are going to disable this check temporarily.
---
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pom.xml b/pom.xml
index d879786..71fd300 100644
--- a/pom.xml
+++ b/pom.xml
@@ -523,6 +523,9 @@ under the License.
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
           <version>2.9</version>
+          <configuration>
+            <skip>true</skip>
+          </configuration>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>