From d79c9fdedaa3104ce93b586bd43eda7cafd3c070 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Tue, 22 Feb 2022 11:43:44 -0500 Subject: [PATCH] Revert JavaDoc options for Java 11 on CI --- build.gradle | 6 ------ 1 file changed, 6 deletions(-) diff --git a/build.gradle b/build.gradle index 4e3b7836ea..6b9582b3c5 100644 --- a/build.gradle +++ b/build.gradle @@ -222,11 +222,6 @@ configure(javaProjects) { subproject -> options.fork = true } - tasks.withType(Javadoc) { - options.addBooleanOption('Xdoclint:syntax', true) // only check syntax with doclint - options.addBooleanOption('Werror', true) // fail build on Javadoc warnings - } - eclipse { project { natures += 'org.springframework.ide.eclipse.core.springnature' @@ -1001,7 +996,6 @@ task api(type: Javadoc) { options.overview = 'src/api/overview.html' options.stylesheetFile = file('src/api/stylesheet.css') options.links(project.ext.javadocLinks) - options.addBooleanOption('Xdoclint:syntax', true) // only check syntax with doclint source javaProjects.collect { project -> project.sourceSets.main.allJava }