plugins { kotlin("jvm") version "2.1.10" } group = "nl.lengrand" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar")))) testImplementation(kotlin("test")) } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(23) }