gambling/build.gradle.kts

35 lines
522 B
Plaintext
Raw Normal View History

2024-09-26 13:50:34 +10:00
plugins {
kotlin("jvm") version "2.0.0"
application
distribution
}
application {
mainClass.set("xyz.maxwellj.gambling.MainKt")
layout.buildDirectory.dir("distributions/")
}
group = "xyz.maxwellj.gambling"
version = "0.0.1"
repositories {
mavenCentral()
}
tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "xyz.maxwellj.gambling.MainKt"
}
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}