Skip to content

Commit

Permalink
fix dokka weirdness
Browse files Browse the repository at this point in the history
  • Loading branch information
amarcolini committed Jan 21, 2024
1 parent 3ff8951 commit 3de2420
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.dokka.gradle.AbstractDokkaLeafTask

plugins {
kotlin("jvm") version Versions.kotlin apply false
// kotlin("jvm") version Versions.kotlin apply false
id("com.android.library") version Versions.android apply false
id("org.jetbrains.kotlin.android") version Versions.kotlin apply false
id("org.jetbrains.dokka") version Versions.dokka
Expand Down Expand Up @@ -61,7 +61,7 @@ subprojects.forEach {
suppressInheritedMembers.set(true)
dokkaSourceSets {
configureEach {
if (name == "main") {
if (name in listOf("main", "commonMain", "jvmMain")) {
includes.from("module.md")
reportUndocumented.set(true)
documentedVisibilities.set(
Expand Down

0 comments on commit 3de2420

Please sign in to comment.