Configure dokka for JVM-only

This commit is contained in:
Erik C. Thauvin 2023-09-04 14:45:09 -07:00
parent dd2dc9e380
commit ae060f5bd2

View file

@ -52,6 +52,20 @@ tasks {
delete(deployDir)
}
dokkaJavadoc {
dokkaSourceSets {
configureEach {
suppress.set(true)
}
val commonMain by getting {
suppress.set(false)
platform.set(org.jetbrains.dokka.Platform.jvm)
}
}
}
withType<DokkaTask>().configureEach {
dokkaSourceSets.configureEach {
moduleName.set("UrlEncoder Library")