As far as I know, the M2 Javadoc tool is strictly for generating Javadocs, and does not report such warnings.
I personally like Checkstyle for these kinds of things (and many other things): http://maven.apache.org/plugins/maven-checkstyle-plugin/sample-checkstyle.html <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> HTH. Wayne On 4/12/06, Paul Spencer <[EMAIL PROTECTED]> wrote: > Wayne, > In general the output of the "verbose" parameter from the javadoc command. > > Examples: > o warning - @return tag has no arguments. > o warning - Tag @see: can't find getCompanyId(java.lang.String) > o warning - The first sentence is interpreted to be: > o warning - @param argument "numberOfDays" is not a parameter name. > > Paul Spencer > > Wayne Fay wrote: > > What kind of "warnings" did it report exactly?? > > > > Wayne > > > > On 4/12/06, Paul Spencer <[EMAIL PROTECTED]> wrote: > > > >>Maven 1.0.2 produced a Javadoc warnging report. I have not found this > >>in Maven 2.0.x. > >> > >>Does it exist? If so, where and how is it configured? > >> > >>Paul Spencer > >> > >>--------------------------------------------------------------------- > >>To unsubscribe, e-mail: [EMAIL PROTECTED] > >>For additional commands, e-mail: [EMAIL PROTECTED] > >> > >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
