Skip to content

Commit

Permalink
Fix for JDK-8212233 is not a workaround, it should have been done any…
Browse files Browse the repository at this point in the history
…way.
  • Loading branch information
jglick committed Apr 30, 2019
1 parent 660ff80 commit fae8d61
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<source>${java.level}</source>
<quiet>true</quiet>
<links>
<link>http://javadoc.jenkins.io/</link>
Expand Down Expand Up @@ -1492,28 +1493,5 @@
</plugins>
</build>
</profile>
<profile>
<!-- Workaround for https://bugs.openjdk.java.net/browse/JDK-8212233
TODO: likely just forbid 11.0.2 when 11.0.3 is out -->
<id>javadoc-crash-jdk-11.0.2</id>
<activation>
<property>
<name>java.version</name>
<value>11.0.2</value>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>${java.level}</source>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>

0 comments on commit fae8d61

Please sign in to comment.