You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by zi...@apache.org on 2018/09/27 14:22:43 UTC

[parquet-format] branch master updated: PARQUET-1429: Turn off DocLint on parquet-format (#108)

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

zivanfi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git


The following commit(s) were added to refs/heads/master by this push:
     new 28ead3f  PARQUET-1429: Turn off DocLint on parquet-format (#108)
28ead3f is described below

commit 28ead3fd157842247ac71c5ec1fac94f1ff83ec4
Author: nandorKollar <na...@users.noreply.github.com>
AuthorDate: Thu Sep 27 16:22:38 2018 +0200

    PARQUET-1429: Turn off DocLint on parquet-format (#108)
    
    The code generated by Thrift had several issues found by DocLint, which caused the attach-javadocs goal to fail when using Java 8.
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 0b0c114..5d35ecc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -122,6 +122,13 @@
         </executions>
       </plugin>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <additionalparam>-Xdoclint:none</additionalparam>
+        </configuration>
+      </plugin>
+      <plugin>
         <!-- Override source and target from the ASF parent -->
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>