blob: 8dfad31bf9346630feb0ac8b2138ce06fcff60fd [file] [log] [blame]
/*
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
plugins {
id "me.champeau.gradle.jmh" version "0.4.4"
}
repositories {
maven { url "http://repo.typesafe.com/typesafe/releases/" }
}
dependencies {
jmh 'com.typesafe.akka:akka-actor:2.0.2'
jmh project(':kotlinx-coroutines-core-common')
jmh project(':kotlinx-coroutines-core')
jmh project(':kotlinx-coroutines-core').sourceSets.test.output
jmh project(':kotlinx-coroutines-io')
}
jmh.jmhVersion = '1.19'
jmhJar.archiveName = 'benchmarks.jar'
//jmh {
// include = ['.*Channel.*Benchmark']
// exclude = ['.*Guice.*', '.*PingPong.*']
//}