From 91a17d690f003c73591c12be02241afc5ec92cfb Mon Sep 17 00:00:00 2001 From: Benjamin Boyle Date: Wed, 5 May 2021 13:51:42 -0700 Subject: [PATCH] Remove Javadoc not failing on error The 'javadoc' task should fail when there is an error. The 'javadocCleanup' task failed for PR 7239 due to a plugin issue 242, while it should have been the 'javadoc' task that failed the build. Also, publishing when javadocs fail is not desired. --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index 9a2c3de5cd..f8cd19a4b5 100644 --- a/build.gradle +++ b/build.gradle @@ -66,7 +66,6 @@ tasks.withType(JavaCompile) { apply from: file("gradle/javadoc_cleanup.gradle") javadoc { - failOnError = false exclude "**/internal/**" exclude "**/test/**" exclude "**/perf/**"