Skip to content

Commit

Permalink
Disable doclint
Browse files Browse the repository at this point in the history
  • Loading branch information
hameno committed Mar 20, 2015
1 parent ca90e3e commit 33d4479
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -243,4 +243,24 @@
</pluginManagement>
</build>

<profiles>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 33d4479

Please sign in to comment.