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

jacopoc pushed a commit to branch release24.09
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit 62b1f80595aea8496e41f672839c128f67ee6b39
Author: Jacopo Cappellato <[email protected]>
AuthorDate: Sat May 30 06:27:33 2026 +0200

    Improved: Add javadoc option to suppress missing documentation warnings
    
    Generate Javadocs quietly, validate everything except missing documentation.
    
    (cherry picked from commit 8e1ab3f1deae601b11a1b14a13694ebddf8276df)
---
 build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build.gradle b/build.gradle
index 8eaf71cf3c..9418346a35 100644
--- a/build.gradle
+++ b/build.gradle
@@ -109,6 +109,9 @@ javadoc {
             'https://commons.apache.org/proper/commons-cli/apidocs'
         )
     }
+    options as StandardJavadocDocletOptions
+    options.addStringOption('Xdoclint:all,-missing', '-quiet')
+    //options.addStringOption('Xmaxwarns', '0') // Setting to 0 means all 
warnings (default 100). We have currently (2025/03/16) 12167 warnings!
 }
 
 java {

Reply via email to