This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git

commit 1dc7e88a3d72bb592d37167088ba655fc996af65
Author: Jark Wu <[email protected]>
AuthorDate: Thu Oct 23 23:41:04 2025 +0800

    [infra] Fix maven-javadoc-plugin for releasing
---
 pom.xml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 49607fe4f..601461cb6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1050,12 +1050,16 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-javadoc-plugin</artifactId>
-                    <version>2.9.1</version><!--$NO-MVN-MAN-VER$-->
+                    <version>3.8.0</version>
                     <configuration>
                         <quiet>true</quiet>
                         <detectOfflineLinks>false</detectOfflineLinks>
-                        <additionalJOptions combine.children="append">
+                        <release>11</release>
+                        <additionalJOptions>
                             
<additionalJOption>-Xdoclint:none</additionalJOption>
+                            
<additionalJOption>--allow-script-in-comments</additionalJOption>
+                            <!-- Suppress the error that is accepted by JDK 8 
but not by JDK 11. -->
+                            
<additionalJOption>--ignore-source-errors</additionalJOption>
                         </additionalJOptions>
                     </configuration>
                 </plugin>

Reply via email to