2018-10-26 17:45:41 +03:00
|
|
|
plugins {
|
|
|
|
id "java"
|
|
|
|
id "me.champeau.gradle.jmh" version "0.4.7"
|
2019-01-21 10:22:37 +03:00
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
2018-10-26 17:45:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-01-21 10:22:37 +03:00
|
|
|
api project(":kmath-core")
|
|
|
|
api project(":kmath-coroutines")
|
|
|
|
api project(":kmath-commons")
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
2018-12-11 17:25:55 +03:00
|
|
|
//jmh project(':kmath-core')
|
2019-01-07 17:18:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
jmh{
|
|
|
|
warmupIterations = 1
|
|
|
|
}
|
|
|
|
|
2019-01-21 10:22:37 +03:00
|
|
|
jmhClasses.dependsOn(compileKotlin)
|
|
|
|
repositories {
|
|
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileTestKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|