I am using Maven to build a project which has somewhat suboptimal Javadoc comments.
I have noticed that no matter how many warnings I fix, I always get only 100 warnings reported:
Building index for all the packages and classes...
Generating ...\target\site\apidocs\overview-tree.html...
Generating ...\target\site\apidocs\index-all.html...
Generating ...\target\site\apidocs\deprecated-list.html...
Building index for all classes...
Generating ...\target\site\apidocs\allclasses-frame.html...
Generating ...\target\site\apidocs\allclasses-frame.html...
Generating ...\target\site\apidocs\allclasses-noframe.html...
Generating ...\target\site\apidocs\allclasses-noframe.html...
Generating ...\target\site\apidocs\index.html...
Generating ...\target\site\apidocs\overview-summary.html...
Generating ...\target\site\apidocs\help-doc.html...
100 errors
100 warnings
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
I would like to see all of the errirs and warnings or at least the total count.
How do I achieve this with Maven?