23 lines
462 B
Groovy
23 lines
462 B
Groovy
plugins{
|
|
id "kotlin-platform-common"
|
|
}
|
|
|
|
description = "Platform-independent interfaces for kotlin maths"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-common:$kotlin_version"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
|
|
testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
|
|
}
|
|
|
|
kotlin {
|
|
experimental {
|
|
coroutines "enable"
|
|
}
|
|
}
|
|
|