Skip to content

Commit c236312

Browse files
authored
Update build.gradle
1 parent 40116dc commit c236312

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ subprojects {
4141
tasks.withType(Javadoc).all { enabled = false }
4242
}
4343
task javadoc(type: Javadoc) {
44-
excludes = ['**/*.kt'] // < ---- Exclude all kotlin files from javadoc file.
45-
// ...
44+
excludes = ['**/*.kt']
45+
}
46+
tasks.withType(Javadoc) {
47+
options.addBooleanOption('Xdoclint:none', true)
4648
}

0 commit comments

Comments
 (0)