Skip to content

Commit

Permalink
Avoid Java 8's strict doc generator
Browse files Browse the repository at this point in the history
  • Loading branch information
vinhkhuc committed Feb 6, 2017
1 parent 727559b commit ef7fcff
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@
</repository>
</distributionManagement>

<!-- Avoid Java 8's strict doc generator-->
<profiles>
<profile>
<id>disable-java8-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
</profiles>

<build>
<resources>
<resource>
Expand Down

0 comments on commit ef7fcff

Please sign in to comment.