Marcus Cvjeticanin
03/14/2023, 12:26 AMtasks.withType<DokkaTask>().configureEach {
pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
customAssets = listOf(file("logo.png"))
customStyleSheets = listOf(file("my-styles.css"))
footerMessage = "(c) 2022-2023 Project"
separateInheritedMembers = false
templatesDir = file("dokka/templates")
mergeImplicitExpectActualDeclarations = false
}
}
Ignat Beresnev
03/14/2023, 1:42 AMDokkaTask
to DokkaTaskPartial
and apply it for all subprojects
It's explained to a degree here: https://kotlinlang.org/docs/dokka-gradle.html#multi-project-configurationMarcus Cvjeticanin
03/14/2023, 9:22 AM