mirror of
https://github.com/geoffsee/osm-maker-vibes.git
synced 2025-09-08 22:46:45 +00:00
43 lines
773 B
Plaintext
43 lines
773 B
Plaintext
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<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
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()
|
|
}
|