Skip to content

Commit

Permalink
Merge pull request #29 from ankon/doclint-8-disable
Browse files Browse the repository at this point in the history
Disable doclint checks when using Java 8's javadoc
  • Loading branch information
aled committed Mar 19, 2014
2 parents 57461ad + aaf50ee commit 1432587
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Expand Up @@ -317,4 +317,24 @@
</plugins>
</reporting>

<profiles>
<profile>
<id>docline-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 1432587

Please sign in to comment.