请问你能帮忙gradle吗?
我只需要为 com.example.kmpcorelib.repo 包生成文档。因为现在我生成了所有项目,而不仅仅是 repo 包中的类。
tasks.withType<org.jetbrains.dokka.gradle.DokkaTask>().configureEach {
outputDirectory.set(rootDir.resolve("documentationForKMP"))
dokkaSourceSets {
configureEach {
perPackageOption {
matchingRegex.set("repo.*") // will match all .internal packages and sub-packages
suppress.set(true)
}
}
}
}