Make the build not fail in JDK8 until we fix Javadoc
This commit is contained in:
parent
041d37e0c8
commit
852a7cec77
10
pom.xml
10
pom.xml
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user