Skip to content

Commit

Permalink
exclude couple of packages for javadoc. (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
portlek authored Feb 15, 2024
1 parent 6686124 commit d83c8a7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@ tasks {
javadoc {
options.encoding = Charsets.UTF_8.name()
(options as StandardJavadocDocletOptions).tags("todo")
exclude("allocation/**")
exclude("agones/**")
exclude("com/google/api/**")
exclude("**/allocation/**")
exclude("**/agones/**")
exclude("**/com/google/api/**")
exclude("**/grpc/**")
}

val javadocJar by creating(Jar::class) {
Expand Down

0 comments on commit d83c8a7

Please sign in to comment.