plugins { kotlin("jvm") version "2.1.21" application } group = "org.example" version = "1.0-SNAPSHOT" java { sourceCompatibility = JavaVersion.VERSION_23 targetCompatibility = JavaVersion.VERSION_23 } tasks.withType { kotlinOptions.jvmTarget = "23" } repositories { mavenCentral() maven { url = uri("https://jitpack.io") } maven { url = uri("https://mvn.topobyte.de") } maven { url = uri("https://mvn.slimjars.com") } } dependencies { implementation("com.github.tordanik.OSM2World:osm2world-core:3be7059") testImplementation(kotlin("test")) } application { mainClass.set("org.example.MainKt") } tasks.test { useJUnitPlatform() }