forked from Kotlin/kotlinx.coroutines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
44 lines (32 loc) · 1.16 KB
/
settings.gradle
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
rootProject.name = 'kotlinx.coroutines'
def module(String path) {
int i = path.lastIndexOf('/')
def name = path.substring(i + 1)
include(name)
project(":$name").projectDir = file(path)
}
// ---------------------------
include('benchmarks')
include('knit')
include('site')
module('binary-compatibility-validator')
module('common/kotlinx-coroutines-core-common')
module('core/kotlinx-coroutines-core')
module('core/kotlinx-coroutines-io')
module('integration/kotlinx-coroutines-guava')
module('integration/kotlinx-coroutines-jdk8')
module('integration/kotlinx-coroutines-nio')
module('integration/kotlinx-coroutines-quasar')
module('integration/kotlinx-coroutines-slf4j')
module('reactive/kotlinx-coroutines-reactive')
module('reactive/kotlinx-coroutines-reactor')
module('reactive/kotlinx-coroutines-rx1')
module('reactive/kotlinx-coroutines-rx2')
module('reactive/kotlinx-coroutines-rx-example')
module('ui/kotlinx-coroutines-android')
module('ui/kotlinx-coroutines-javafx')
module('ui/kotlinx-coroutines-swing')
module('js/kotlinx-coroutines-core-js')
module('js/js-stub')
module('js/example-frontend-js')
//module('native/kotlinx-coroutines-core-native')