Skip to content

Commit

Permalink
Merge pull request #173 from batmat/workaround-javadoc-crash-jdk-11.0.2
Browse files Browse the repository at this point in the history
[JENKINS-53788] - Add profile to workaround javadoc crash on JDK 11.0.2
  • Loading branch information
batmat committed Mar 8, 2019
2 parents 64ed6ea + 4081a4d commit 0c705d5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pom.xml
Expand Up @@ -1490,5 +1490,28 @@
</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 0c705d5

Please sign in to comment.