kmath/kmath-jvm/build.gradle

30 lines
633 B
Groovy
Raw Normal View History

2018-08-29 13:45:06 +03:00
plugins{
id "kotlin-platform-jvm"
id "me.champeau.gradle.jmh" version "0.4.5"
}
repositories {
mavenCentral()
}
dependencies {
2018-08-03 09:07:35 +03:00
expectedBy project(":kmath-common")
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testCompile "junit:junit:4.12"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
2018-09-11 22:00:00 +03:00
sourceCompatibility = "1.8"
kotlin {
experimental {
coroutines "enable"
}
}