Skip to content

Commit

Permalink
Disable javaDoc task due to Dokka issue with sealed classes
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Wong committed Oct 9, 2024
1 parent 8c3cd4f commit 33c299d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,13 @@ plugins {

task clean(type: Delete) {
delete rootProject.buildDir
}

allprojects {
// https://github.com/Kotlin/dokka/issues/2956
tasks.matching { task ->
task.name.contains("javaDocReleaseGeneration")
}.configureEach {
enabled = false
}
}

0 comments on commit 33c299d

Please sign in to comment.