kmath/benchmarks/build.gradle

38 lines
840 B
Groovy
Raw Normal View History

2018-10-26 17:45:41 +03:00
plugins {
id "java"
2019-02-12 11:58:58 +03:00
id "me.champeau.gradle.jmh" version "0.4.8"
id 'org.jetbrains.kotlin.jvm'
2018-10-26 17:45:41 +03:00
}
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven{ url "http://dl.bintray.com/kyonifer/maven"}
mavenCentral()
}
2018-10-26 17:45:41 +03:00
dependencies {
implementation project(":kmath-core")
implementation project(":kmath-coroutines")
implementation project(":kmath-commons")
implementation project(":kmath-koma")
2019-02-12 11:58:58 +03:00
implementation group: "com.kyonifer", name:"koma-core-ejml", version: "0.12"
//compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
//jmh project(':kmath-core')
2019-01-07 17:18:31 +03:00
}
jmh{
warmupIterations = 1
}
jmhClasses.dependsOn(compileKotlin)
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}