blob: b09589cb1aed97f29d5c289b7414b478024e59e7 [file] [log] [blame]
Roman Elizarove1a56522018-04-04 10:31:08 +03001
2// Platform-specific configuration to compile common modules
3
4apply plugin: 'kotlin-platform-common'
5
Roman Elizarov31452902018-04-11 13:58:19 +03006kotlin.experimental.coroutines "enable"
7
Roman Elizarove1a56522018-04-04 10:31:08 +03008dependencies {
9 compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
10 testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
11 testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
12}
13
Roman Elizarov31452902018-04-11 13:58:19 +030014repositories {
15 jcenter()
16 maven { url "https://kotlin.bintray.com/kotlinx" }
17}