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:
parent
2967f2a18c
commit
030ae1cb15
1 changed files with 9 additions and 0 deletions
9
pom.xml
9
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue