aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multimodule-example/parentProject/build.gradle.kts
blob: 397ad22f73b832d3aed8978d092523f90d171d1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
plugins {
    /**
     * Kotlin plugin necessary because of potential Gradle bug!
     * This is not necessary if the kotlin gradle plugin is added as buildscript
     * dependency like
     *
     * buildscript {
     *     dependencies {
     *         classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
     *     }
     * }
     */
    kotlin("jvm")
    id("org.jetbrains.dokka")
}

dependencies {
    implementation(kotlin("stdlib"))
}