org.jetbrains.dokka
Owner: Kotlin Team
Dokka, the documentation engine for Kotlin
Sources: https://github.com/Kotlin/dokka
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.dokka") version "1.4.30"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.4.30") } } apply(plugin = "org.jetbrains.dokka")
- Applying plugins to all subprojects .