Browse Source

Generate Javadoc with same source level as used for compilation

This works around a change in javadoc generation in JDK 11.0.2. See
https://bugs.openjdk.java.net/browse/JDK-8212233 for details.
pull/15951/head
Andy Wilkinson 7 years ago
parent
commit
027f9182a8
  1. 3
      spring-boot-project/spring-boot-parent/pom.xml

3
spring-boot-project/spring-boot-parent/pom.xml

@ -677,6 +677,9 @@ @@ -677,6 +677,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<source>${java.version}</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>

Loading…
Cancel
Save