Global Dokka Configuration
data class GlobalDokkaConfiguration( val perPackageOptions: List<PackageOptionsImpl>?, val externalDocumentationLinks: List<ExternalDocumentationLinkImpl>?, val sourceLinks: List<SourceLinkDefinitionImpl>?)
Content copied to clipboard
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>?)
Content copied to clipboard