Skip to content

Commit

Permalink
Disable JavaDoc doclint for JDK 8
Browse files Browse the repository at this point in the history
This is required because the HelpMojo generated by maven-plugin-plugin
contains invalid JavaDoc.
  • Loading branch information
koraktor committed Dec 25, 2014
1 parent 55d576d commit a542145
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,15 @@
<mavanagaiata.skip>true</mavanagaiata.skip>
</properties>
</profile>
<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
</profiles>

<dependencies>
Expand Down

0 comments on commit a542145

Please sign in to comment.