This is an automated email from the ASF dual-hosted git repository.
uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new af6e3ec ARROW-1913: [Java] Disable Javadoc doclint with Java 8
af6e3ec is described below
commit af6e3ec19d2de9643a646e82b776d8fc6df97df1
Author: Li Jin <[email protected]>
AuthorDate: Sun Mar 25 12:19:09 2018 +0200
ARROW-1913: [Java] Disable Javadoc doclint with Java 8
Author: Li Jin <[email protected]>
Closes #1788 from icexelloss/ARROW-1913 and squashes the following commits:
964cead <Li Jin> Add Java 8 profile
---
java/pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/java/pom.xml b/java/pom.xml
index 6bb807f..78afb0e 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -624,4 +624,17 @@
<module>vector</module>
<module>tools</module>
</modules>
+
+ <profiles>
+ <profile>
+ <id>java-8</id>
+ <activation>
+ <jdk>[1.8,)</jdk>
+ </activation>
+ <properties>
+ <doclint>none</doclint>
+ </properties>
+ </profile>
+ </profiles>
+
</project>
--
To stop receiving notification emails like this one, please contact
[email protected].