Skip to content

Commit 027f918

Browse files
committed
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.
1 parent a34e71c commit 027f918

File tree

1 file changed

+3
-0
lines changed
  • spring-boot-project/spring-boot-parent

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,6 +677,9 @@
677677
<plugin>
678678
<groupId>org.apache.maven.plugins</groupId>
679679
<artifactId>maven-javadoc-plugin</artifactId>
680+
<configuration>
681+
<source>${java.version}</source>
682+
</configuration>
680683
<executions>
681684
<execution>
682685
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)