Hello, I’m looking into adding Dokka to our projec...
# dokka
o
Hello, I’m looking into adding Dokka to our project. The documentation states that I should add the following for a multi-module project. To my understanding this is kotlin. I have tried to “convert” it to groovy. This feels super easy, but I can solve it.
Copy code
tasks.dokkaHtmlMultiModule.configure {
    outputDirectory.set(buildDir.resolve("dokkaCustomMultiModuleOutput"))
}
Thanks 🙂
i
Hi! kotlinx.serialization still has groovy-based configuration, I think it's a nice example: https://github.com/Kotlin/kotlinx.serialization/blob/master/gradle/dokka.gradle
o
Exactly what i needed! Thanks!
👍 1