Skip to content

Commit

Permalink
build: Mute empty javadoc warnings for java sources
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobkmar committed Apr 26, 2024
1 parent b541e2c commit c886296
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions buildSrc/src/main/kotlin/kotlin-project-script.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ tasks {
freeCompilerArgs += "-Xcontext-receivers"
}
}
javadoc {
options {
this as CoreJavadocOptions
addStringOption("Xdoclint:none", "-quiet")
}
}
}

kotlin {
Expand Down

0 comments on commit c886296

Please sign in to comment.