We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef4ecb1 commit cc7f533Copy full SHA for cc7f533
buildSrc/src/main/groovy/org/elasticsearch/gradle/BuildPlugin.groovy
@@ -549,6 +549,11 @@ class BuildPlugin implements Plugin<Project> {
549
javadoc.classpath = javadoc.getClasspath().filter { f ->
550
return classes.contains(f) == false
551
}
552
+ /*
553
+ * Generate docs using html5 to suppress a warning from `javadoc`
554
+ * that the default will change to html5 in the future.
555
+ */
556
+ javadoc.options.addBooleanOption('html5', true)
557
558
configureJavadocJar(project)
559
0 commit comments