Global Dokka Configuration
data class GlobalDokkaConfiguration(val perPackageOptions: List<PackageOptionsImpl>?, val externalDocumentationLinks: List<ExternalDocumentationLinkImpl>?, val sourceLinks: List<SourceLinkDefinitionImpl>?)
Global options can be configured and applied to all packages and modules at once, overwriting package configuration.
These are handy if we have multiple source sets sharing the same global options as it reduces the size of the boilerplate. Otherwise, the user would be forced to repeat all these options for each source set.
See also
to learn how to apply global configuration
Constructors
Link copied to clipboard
constructor(perPackageOptions: List<PackageOptionsImpl>?, externalDocumentationLinks: List<ExternalDocumentationLinkImpl>?, sourceLinks: List<SourceLinkDefinitionImpl>?)