Disable Javadoc linter for now

Some of the linter's checks produce failures (errors) when Gradle
builds the Javadoc documentation.  Fixing them isn't really a Gradle
issue, though, so I don't want to deal with them now.
This commit is contained in:
Ben Liblit 2017-12-19 16:32:45 -06:00
parent 18495ab44d
commit 9664b1e5b3
1 changed files with 12 additions and 0 deletions

View File

@ -68,3 +68,15 @@ allprojects {
gradleLint.alwaysRun = false
gradleLint.rules = ['all-dependency']
}
////////////////////////////////////////////////////////////////////////
//
// disable Javadoc linter until documentation is in better shape
//
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}