17 lines
454 B
Groovy
17 lines
454 B
Groovy
plugins {
|
|
id 'kotlin-platform-common'
|
|
id 'kotlinx-serialization'
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
|
|
compile "org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:$serialization_version"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-common"
|
|
}
|
|
|
|
kotlin {
|
|
experimental {
|
|
coroutines "enable"
|
|
}
|
|
} |