kmath/benchmarks/build.gradle

17 lines
286 B
Groovy
Raw Normal View History

2018-10-26 17:45:41 +03:00
plugins {
id "java"
id "kotlin"
id "me.champeau.gradle.jmh" version "0.4.7"
}
dependencies {
2019-01-04 20:23:32 +03:00
compile project(":kmath-core")
compile project(":kmath-coroutines")
//jmh project(':kmath-core')
2019-01-07 17:18:31 +03:00
}
jmh{
warmupIterations = 1
}
jmhClasses.dependsOn(compileKotlin)