Disable doclint When Building With Java 8

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:
Pfifer, Justin 2017-02-02 14:47:46 -08:00
parent 3d18e484cf
commit 0600e2f40d

View file

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