elect
kotlinx-benchmark-runtime:0.4.3
jvmBench
jvmMain
Propagate dependencies and output from main sourceSet.
main
```dependencies {
benchmarksCompile sourceSets.main.output + sourceSets.main.runtimeClasspath
}```
kotlin { targets { jvm { compilations { val main by getting val bench by creating { defaultSourceSet { dependencies { implementation(main.compileDependencyFiles + main.output.classesDirs) } } } } } } }
A modern programming language that makes developers happier.