This is an automated email from the ASF dual-hosted git repository. volodymyr pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill.git
commit 1a4a6da9fbe1bf0e92cb007910f8121d9cbf3a4b Author: Volodymyr Vysotskyi <[email protected]> AuthorDate: Thu Dec 5 20:43:00 2019 +0200 DRILL-7469: Disable doclint for maven-javadoc-plugin closes #1918 --- exec/jdbc-all/pom.xml | 1 + pom.xml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/exec/jdbc-all/pom.xml b/exec/jdbc-all/pom.xml index 97433fa..a722e33 100644 --- a/exec/jdbc-all/pom.xml +++ b/exec/jdbc-all/pom.xml @@ -343,6 +343,7 @@ <exclude>commons-beanutils:commons-beanutils:jar:*</exclude> <exclude>io.netty:netty-tcnative:jar:*</exclude> <exclude>com.fasterxml.woodstox:woodstox-core:jar:*</exclude> + <exclude>dnsjava:dnsjava:jar:*</exclude> </excludes> </artifactSet> <relocations> diff --git a/pom.xml b/pom.xml index 68f75a2..8b2c132 100644 --- a/pom.xml +++ b/pom.xml @@ -929,6 +929,9 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> + <configuration> + <doclint>none</doclint> + </configuration> </plugin> <!--Note: apache-21.pom has the latest versions of apache-rat-plugin, maven-dependency-plugin and
