Ji Sungbin
08/20/2022, 10:50 AM// in project root gradle's allprojects scope
tasks.withType<DokkaTaskPartial>().configureEach {
moduleName.set("Duckie-QuackQuack-Sub")
outputDirectory.set(file("$rootDir/documents/dokka"))
suppressInheritedMembers.set(true)
dokkaSourceSets.configureEach {
includeNonPublic.set(true)
jdkVersion.set(11)
}
pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
footerMessage =
"""made with <span style="color: $duckieOrange;">❤</span> by <a href="<https://duckie.team/>">Duckie</a>"""
}
}
tasks.dokkaHtmlMultiModule.configure {
moduleName.set("Duckie-QuackQuack-Root")
outputDirectory.set(file("$rootDir/documents/dokka"))
pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
footerMessage =
"""made with <span style="color: $duckieOrange;">❤</span> by <a href="<https://duckie.team/>">Duckie</a>"""
}
}
full gradle code is here. What’s wrong with my code?Gleb Minaev
08/20/2022, 2:24 PMafterEvaluate
block, i.e. allproject { afterEvaluate { /* Past code above here */ } }
.Ji Sungbin
08/20/2022, 2:25 PM