-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
40 lines (32 loc) · 1018 Bytes
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
pluginManagement {
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"binary-compatibility-validator" -> useModule("org.jetbrains.kotlinx:binary-compatibility-validator:${requested.version}")
}
}
}
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(url = "https://kotlin.bintray.com/kotlinx")
}
}
rootProject.name = "kodiak"
include(":docs")
include(":common:common-models")
include(":common:common-formatter")
include(":common:common-runner")
include(":dokka:dokka-models")
include(":dokka:dokka-formatter")
include(":dokka:dokka-runner")
include(":groovydoc:groovydoc-models")
include(":groovydoc:groovydoc-formatter")
include(":groovydoc:groovydoc-runner")
include(":javadoc:javadoc-models")
include(":javadoc:javadoc-formatter")
include(":javadoc:javadoc-runner")
include(":swiftdoc:swiftdoc-models")
include(":swiftdoc:swiftdoc-formatter")
include(":swiftdoc:swiftdoc-runner")