Configure javadoc to ignore 'missing' warnings
This change ensures that all Javadoc syntax, reference, html errors, etc are reported at the commandline during the gradle build, but warnings for missing Javadoc elements (e.g. no @return tag, @param tags, etc) are suppressed. `man javadoc` for details.
This commit is contained in:
parent
4845f2bd00
commit
687c27e54b
|
@ -69,6 +69,7 @@ dependencies {
|
|||
javadoc {
|
||||
options.author = true
|
||||
options.header = project.name
|
||||
options.addStringOption('Xdoclint:all,-missing', '-quiet')
|
||||
options.links(
|
||||
"http://docs.oracle.com/javase/8/docs/api/",
|
||||
"http://netty.io/4.0/api/"
|
||||
|
|
Loading…
Reference in New Issue