Initial commit

This commit is contained in:
2024-10-20 13:37:03 +11:00
parent 093553eecc
commit 82b3ee21e4
10 changed files with 427 additions and 0 deletions

34
server/build.gradle.kts Normal file
View File

@@ -0,0 +1,34 @@
plugins {
kotlin("jvm") version "2.0.0"
application
distribution
}
application {
mainClass.set("xyz.maxwellj.chookpen.MainKt")
layout.buildDirectory.dir("distributions/")
}
group = "xyz.maxwellj.chookpen"
version = "0.0.1"
repositories {
mavenCentral()
}
tasks.withType<Jar> {
manifest {
attributes["Main-Class"] = "xyz.maxwellj.chookpen.MainKt"
}
}
dependencies {
testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}