This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new ed787c2ecf [deploy] Suppress doc generation error when using JDK17
(#5904)
ed787c2ecf is described below
commit ed787c2ecfabf7233e2385d6c5ecb1e5cc71fdf4
Author: Zouxxyy <[email protected]>
AuthorDate: Thu Jul 17 10:07:42 2025 +0800
[deploy] Suppress doc generation error when using JDK17 (#5904)
---
pom.xml | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index c1aa7e0a19..9d35adbcae 100644
--- a/pom.xml
+++ b/pom.xml
@@ -966,16 +966,19 @@ under the License.
</executions>
</plugin>
-
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>3.1.1</version><!--$NO-MVN-MAN-VER$-->
+ <version>3.11.2</version><!--$NO-MVN-MAN-VER$-->
<configuration>
<quiet>true</quiet>
<detectOfflineLinks>false</detectOfflineLinks>
- <additionalJOptions combine.children="append">
+ <release>8</release>
+ <failOnError>false</failOnError>
+ <additionalJOptions>
<additionalJOption>-Xdoclint:none</additionalJOption>
+ <!-- Suppress the error that is accepted by JDK 8
but not by JDK 11. -->
+
<additionalJOption>--ignore-source-errors</additionalJOption>
</additionalJOptions>
</configuration>
</plugin>