GlobalDokkaConfiguration

data class GlobalDokkaConfiguration(    val perPackageOptions: List<PackageOptionsImpl>?,     val externalDocumentationLinks: List<ExternalDocumentationLinkImpl>?,     val sourceLinks: List<SourceLinkDefinitionImpl>?)

Global options are applied to all packages and modules and overwrite package configuration.

These are handy if we have multiple sourcesets sharing the same global options as it reduces the size of the boilerplate. Otherwise, the user would be enforced to repeat all these options per each sourceset.

Constructors

Link copied to clipboard
fun GlobalDokkaConfiguration(    perPackageOptions: List<PackageOptionsImpl>?,     externalDocumentationLinks: List<ExternalDocumentationLinkImpl>?,     sourceLinks: List<SourceLinkDefinitionImpl>?)

Properties

Link copied to clipboard
Link copied to clipboard
val perPackageOptions: List<PackageOptionsImpl>?
Link copied to clipboard
val sourceLinks: List<SourceLinkDefinitionImpl>?