Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 2f167e6

Browse files
committed
Roll back to 3.0.0-M1 version of maven-javadoc-plugin since the 3.0.0
version *requires* JDK 9. Exclude module-info.java from javadoc.
1 parent aa5ccec commit 2f167e6

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@
718718
<plugin>
719719
<groupId>org.apache.maven.plugins</groupId>
720720
<artifactId>maven-javadoc-plugin</artifactId>
721-
<version>3.0.0</version>
721+
<version>3.0.0-M1</version>
722722
<configuration>
723723
<!-- make all the APIs available for javadoc -->
724724
<additionalDependencies>
@@ -733,6 +733,11 @@
733733
<version>${mail.version}</version>
734734
</additionalDependency>
735735
</additionalDependencies>
736+
<sourceFileExcludes>
737+
<sourceFileExclude>
738+
module-info.java
739+
</sourceFileExclude>
740+
</sourceFileExcludes>
736741
</configuration>
737742
</plugin>
738743
<plugin>

0 commit comments

Comments
 (0)