summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorketsuban <ketsuban@192.168.3.110>2026-08-24 19:31:42 +0000
committerketsuban <ketsuban@192.168.3.110>2026-08-24 19:31:42 +0000
commit55f8c206979f671109574cfc0342f11a5f0e912a (patch)
treec107ed80311a15ede6f1ad55970b1bb07e14b516 /build.gradle.kts
downloadkukuri-55f8c206979f671109574cfc0342f11a5f0e912a.tar.gz
kukuri-55f8c206979f671109574cfc0342f11a5f0e912a.tar.bz2
kukuri-55f8c206979f671109574cfc0342f11a5f0e912a.zip
Initial kukuri seed: Kotlin core model + CI pipeline + design spec
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts23
1 files changed, 23 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..0dfdaf8
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,23 @@
+plugins {
+ kotlin("jvm") version "2.0.21"
+ application
+}
+
+group = "net.kukuri"
+version = "0.1.0"
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ testImplementation(kotlin("test"))
+}
+
+application {
+ mainClass.set("kukuri.MainKt")
+}
+
+tasks.test {
+ useJUnitPlatform()
+}