Make the build not fail in JDK8 until we fix Javadoc

This commit is contained in:
Trustin Lee 2014-02-10 14:11:38 -08:00
parent 041d37e0c8
commit 852a7cec77
1 changed files with 10 additions and 0 deletions

10
pom.xml
View File

@ -110,6 +110,16 @@
</plugins>
</build>
</profile>
<!-- Our Javadoc has poor enough quality to fail the build thanks to JDK8 javadoc which got more strict. -->
<profile>
<id>jdk8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
</properties>
</profile>
</profiles>
<properties>