aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multimodule-example/settings.gradle.kts
blob: 9844b3cc8554def784c8acc6628e6354cb02926f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pluginManagement {
    val kotlinVersion: String by settings
    val dokkaVersion: String by settings

    plugins {
        kotlin("jvm") version kotlinVersion
        id("org.jetbrains.dokka") version dokkaVersion
    }
}

include(":parentProject")
include(":parentProject:childProjectA")
include(":parentProject:childProjectB")

rootProject.name = "dokka-multimodule-example"