Files
tactical-server/build.gradle.kts
T
2026-06-09 15:23:14 +00:00

28 lines
488 B
Kotlin

plugins {
kotlin("jvm") version "2.2.0"
application
}
group = "de.ruvnox.tactical"
version = "0.1.0-SNAPSHOT"
application {
mainClass.set("de.ruvnox.tactical.MainKt")
}
kotlin {
jvmToolchain(17)
}
dependencies {
implementation("io.ktor:ktor-server-core-jvm:3.1.3")
implementation("io.ktor:ktor-server-netty-jvm:3.1.3")
implementation("ch.qos.logback:logback-classic:1.5.18")
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}