kmath/kmath-common/build.gradle

23 lines
462 B
Groovy
Raw Normal View History

2018-08-29 13:45:06 +03:00
plugins{
id "kotlin-platform-common"
}
2018-08-29 13:45:06 +03:00
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"
}
2018-08-29 13:45:06 +03:00
kotlin {
experimental {
coroutines "enable"
}
}