Skip javadoc on Java 12+ to workaround https://bugs.openjdk.java.net/browse/JDK-8212233 which causes javadoc to fail with "Exit code: 1 - javadoc: error - The code being documented uses modules but the packages defined in https://docs.oracle.com/javase/7/docs/api/ are in the unnamed module."
This commit is contained in:
parent
402a1283de
commit
58dfe5517d
4
pom.xml
4
pom.xml
|
@ -905,9 +905,9 @@
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>java11</id>
|
<id>java11+</id>
|
||||||
<activation>
|
<activation>
|
||||||
<jdk>11</jdk>
|
<jdk>[11,)</jdk>
|
||||||
</activation>
|
</activation>
|
||||||
<properties>
|
<properties>
|
||||||
<!-- workaround for https://bugs.openjdk.java.net/browse/JDK-8212233
|
<!-- workaround for https://bugs.openjdk.java.net/browse/JDK-8212233
|
||||||
|
|
Loading…
Reference in New Issue