Files
jdp11/build.gradle.kts
2023-08-28 14:00:07 +02:00

27 lines
319 B
Plaintext

plugins {
kotlin("jvm") version "1.9.0"
application
}
group = "com.thequux"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}
application {
mainClass.set("MainKt")
}