Revert JavaDoc options for Java 11 on CI

This commit is contained in:
Artem Bilan
2022-02-22 11:43:44 -05:00
parent fb05c73969
commit d79c9fdeda

View File

@@ -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
}