This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push:
new e0066003a9 Improved: Check and enhance the Javadoc rules/documentation
for the project (OFBIZ-9148)
e0066003a9 is described below
commit e0066003a9a2a7ffe7d6dac5baeb109bb811bac7
Author: Jacques Le Roux <[email protected]>
AuthorDate: Fri Mar 14 10:33:44 2025 +0100
Improved: Check and enhance the Javadoc rules/documentation for the project
(OFBIZ-9148)
After this message in dev ML "Javadoc remaining warnings"
https://lists.apache.org/thread/sbn19nyyd0r3xm0h6c6g17vp1k0mmqm5
I have found a simple solution to show all warnings. Here it is.
---
build.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build.gradle b/build.gradle
index 84e23ed5c8..96ce1390a2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -148,6 +148,8 @@ javadoc {
'https://commons.apache.org/proper/commons-cli/apidocs'
)
}
+ options as StandardJavadocDocletOptions
+ //options.addStringOption('Xmaxwarns', '0') // Setting to 0 means all
warnings (default 100). We have currently (2025/03/16) 12167 warnings!
}
java {