This commit is contained in:
2021-09-26 12:24:37 +02:00
parent 38b5416752
commit 61f5853ab9
17 changed files with 247 additions and 256 deletions

19
benchmark/build.gradle Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id 'org.jetbrains.kotlin.jvm'
id 'application'
}
dependencies {
implementation group: 'net.woggioni', name: 'jwo', version: getProperty('version.jwo')
implementation(rootProject)
// runtime(files(rootProject.projectDir.toPath().resolve("src/test/resources")))
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_11
}
application {
mainClassName = "net.woggioni.klevtree.benchmark.BenchmarkKt"
}