Skip to content

Commit 3c3ee71

Browse files
committed
Disable Javadoc warnings
1 parent f3fb819 commit 3c3ee71

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ version = "0.7"
3232
tasks.withType<JavaCompile> {
3333
options.compilerArgs.addAll(listOf("--release", "9"))
3434
}
35+
tasks.javadoc {
36+
(options as CoreJavadocOptions).addStringOption("Xdoclint:none", "-quiet")
37+
}
3538

3639
val functionalTest: SourceSet by sourceSets.creating
3740
gradlePlugin.testSourceSets(functionalTest)

0 commit comments

Comments
 (0)