aboutsummaryrefslogtreecommitdiff
path: root/example/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'example/build.gradle.kts')
-rw-r--r--example/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/example/build.gradle.kts b/example/build.gradle.kts
index 34be934..888e996 100644
--- a/example/build.gradle.kts
+++ b/example/build.gradle.kts
@@ -1,6 +1,7 @@
plugins {
kotlin("jvm") version "2.0.20"
id("moe.nea.mc-auto-translations")
+ application
}
repositories {
@@ -25,3 +26,5 @@ tasks.processResources {
into("assets/minecraft/lang")
}
}
+
+application.mainClass.set("moe.nea.mcautotranslations.example.TestKt")