在常规的 Javadoc 生成过程中,我们可以通过添加以下行来简单地排除类或包。
exclude '**/SampleClass.java'
exclude '**/com/example/java**'
问题:如何使用Dokka 工具排除/抑制单个 Kotlin/java 类?
下面是排除包的代码是否有排除特定类的选项?
perPackageOption {
matchingRegex.set("com.example.xxx.xxx.package.*")
suppress.set(true)
}
Dokka 工具参考:https ://kotlinlang.org/docs/kotlin-doc.html
工具配置: https ://kotlin.github.io/dokka/1.5.0/user_guide/gradle/usage/#configuration-options