Skip to content

Commit

Permalink
Allow JavaDoc to built with java 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmay committed Apr 24, 2016
1 parent 7e473ad commit de1c1df
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pom.xml
Expand Up @@ -747,6 +747,16 @@
</plugins>
</build>
</profile>
<!-- Disable doclint... introduced in Java 8 and there are too many errors in CDK doc ATM. -->
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
</profiles>

<dependencies>
Expand Down

0 comments on commit de1c1df

Please sign in to comment.