Update dokka plugin to 1.6.10 version

Move it into 'buildSrc' dependency, so it will be available to
precompiled script plugins.

^KT-49227 In Progress
This commit is contained in:
Yahor Berdnikau
2021-11-08 18:50:52 +01:00
committed by Space
parent 0c24f67c21
commit 764dd84803
4 changed files with 152 additions and 4 deletions
@@ -145,9 +145,13 @@ tasks {
dependsOn(named("validatePlugins"))
}
named<DokkaTask>("dokka") {
outputFormat = "markdown"
includes = listOf("$projectDir/Module.md")
withType<DokkaTask>().configureEach {
dokkaSourceSets.configureEach {
includes.from("Module.md")
}
}
register("dokka") {
dependsOn(named("dokkaJavadoc"))
}
}