2018-08-29 13:45:06 +03:00
|
|
|
plugins{
|
|
|
|
id "kotlin-platform-common"
|
|
|
|
}
|
2018-04-22 15:58:20 +03:00
|
|
|
|
2018-08-29 13:45:06 +03:00
|
|
|
description = "Platform-independent interfaces for kotlin maths"
|
2018-04-22 15:58:20 +03:00
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2018-08-29 13:45:06 +03:00
|
|
|
kotlin {
|
|
|
|
experimental {
|
|
|
|
coroutines "enable"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|