From 9664b1e5b390bedddbdff853cda5116c4c82b8c6 Mon Sep 17 00:00:00 2001 From: Ben Liblit Date: Tue, 19 Dec 2017 16:32:45 -0600 Subject: [PATCH] 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. --- build.gradle | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/build.gradle b/build.gradle index ba559f2da..c3918cc41 100644 --- a/build.gradle +++ b/build.gradle @@ -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') + } +}