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

rzo1 pushed a commit to branch tomee-10.0.0-M2
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit dd60aca621be2007babd1c47ba41dc2879872691
Author: Richard Zowalla <r...@apache.org>
AuthorDate: Tue Jul 16 09:13:56 2024 +0200

    Workaround hard fail of javadoc generation
---
 pom.xml | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index d08d68cd99..a3f2351038 100644
--- a/pom.xml
+++ b/pom.xml
@@ -457,8 +457,16 @@
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>${version.plugin.javadoc}</version>
         <configuration>
-          <source>8</source>
-          <release>8</release>
+          <failOnError>false</failOnError>
+          <encoding>utf-8</encoding>
+          <show>public</show>
+          <detectLinks>false</detectLinks>
+          <detectOfflineLinks>true</detectOfflineLinks>
+          <detectJavaApiLink>false</detectJavaApiLink>
+          <!-- Speeds up the build of the javadocs -->
+          <quiet>true</quiet>
+          <use>false</use>
+          <doclint>none</doclint>
         </configuration>
       </plugin>
 

Reply via email to