blob: dd20f3ddefc120b0406d74daedeb4f2253715701 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
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"
|