Fix multi-threading, add Query interface, java test

This commit is contained in:
2024-05-04 17:13:34 +02:00
parent 34b620dfa5
commit cc3ac67be6
11 changed files with 488 additions and 80 deletions

View File

@@ -1,9 +1,9 @@
plugins {
kotlin("jvm") version "2.0.0-RC2"
kotlin("jvm") version "1.9.23"
}
group = "nl.astraeus"
version = "1.0-SNAPSHOT"
version = "1.0.0-SNAPSHOT"
repositories {
mavenCentral()
@@ -16,6 +16,7 @@ dependencies {
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
}