forked from Kotlin/kotlinx.coroutines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
52 lines (43 loc) · 1.54 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
pluginManagement {
val javafx_plugin_version: String by settings
plugins {
id("org.openjfx.javafxplugin") version javafx_plugin_version
id("me.champeau.jmh") version "0.7.2"
}
repositories {
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev/")
gradlePluginPortal()
}
}
rootProject.name = "kotlinx.coroutines"
fun module(path: String) {
val i = path.lastIndexOf("/")
val name = path.substring(i + 1)
include(name)
project(":$name").projectDir = file(path)
}
val prop = System.getProperty("build_snapshot_train")
var build_snapshot_train: String by extra
build_snapshot_train = if (prop != null && prop != "") "true" else "false"
// ---------------------------
include("benchmarks")
module("test-utils")
include("kotlinx-coroutines-core")
module("kotlinx-coroutines-test")
module("kotlinx-coroutines-debug")
module("kotlinx-coroutines-bom")
module("integration/kotlinx-coroutines-guava")
module("integration/kotlinx-coroutines-jdk8")
module("integration/kotlinx-coroutines-slf4j")
module("integration/kotlinx-coroutines-play-services")
module("reactive/kotlinx-coroutines-reactive")
module("reactive/kotlinx-coroutines-reactor")
module("reactive/kotlinx-coroutines-jdk9")
module("reactive/kotlinx-coroutines-rx2")
module("reactive/kotlinx-coroutines-rx3")
module("ui/kotlinx-coroutines-android")
module("ui/kotlinx-coroutines-android/android-unit-tests")
if (JavaVersion.current().isJava11Compatible()) {
module("ui/kotlinx-coroutines-javafx")
}
module("ui/kotlinx-coroutines-swing")