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:
Chris Beams 2014-12-27 14:36:51 +01:00
parent 4845f2bd00
commit 687c27e54b
No known key found for this signature in database
GPG Key ID: 3D214F8F5BC5ED73
1 changed files with 1 additions and 0 deletions

View File

@ -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/"