AJ Alt
12/15/2020, 6:18 PMdokkaHtml
to work? Following the docs (https://kotlin.github.io/dokka/1.4.20/user_guide/gradle/usage/#applying-plugins), I tried this in my build.kts:
plugins { id("org.jetbrains.dokka") version "1.4.20" }
tasks.dokkaHtml {
pluginConfiguration<DokkaBase, DokkaBaseConfiguration> {
customStyleSheets = listOf(file("my-stylesheet.css"))
}
}
But DokkaBase
and DokkaBaseConfiguration
don't resolve. Are the docs wrong, or am I misunderstanding them?Marcin Aman
12/15/2020, 7:00 PMAJ Alt
12/15/2020, 8:14 PM"org.jetbrains.dokka"
? I don't see the term "base plugin" in the docs anywhere, but I might be missing it.AJ Alt
12/15/2020, 10:29 PMbuildscript {
dependencies {
classpath("org.jetbrains.dokka:dokka-base:1.4.20")
}
}
I wonder why that's not mentioned in the docs.Kamil Doległo
12/18/2020, 2:00 AMAJ Alt
12/18/2020, 5:08 PMpluginConfiguration<DokkaBase, DokkaBaseConfiguration> {...}
(you can see that same link in the original question), but it doesn't mention :dokka-base
at all, which is the problem that caused this thread.