Disable doclint When Building With Java 8 (#141)

Disable the JavaDoc doclint when building with Java 8.  Java 8 became
much more pedantic on bad practices, and the documentation hasn't been
cleaned up.
This commit is contained in:
Justin Pfifer 2017-02-17 10:32:21 -08:00 committed by GitHub
parent 2967f2a18c
commit 030ae1cb15

View file

@ -246,6 +246,15 @@
</build>
<profiles>
<profile>
<id>disable-java8-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
<profile>
<id>publishing</id>
<build>