Gradle Package Options Builder
Configuration builder that allows setting some options for specific packages matched by matchingRegex.
Example in Gradle Kotlin DSL:
tasks.dokkaHtml {
dokkaSourceSets.configureEach {
perPackageOption {
matchingRegex.set(".*internal.*")
suppress.set(true)
}
}
}Content copied to clipboard
Constructors
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Whether to emit warnings about visible undocumented declarations, that is declarations from this package and without KDocs, after they have been filtered by documentedVisibilities.
Link copied to clipboard
Whether to document declarations annotated with Deprecated.