aboutsummaryrefslogtreecommitdiff
path: root/example/build.gradle.kts
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-11-09 16:56:33 +0100
committerLinnea Gräf <nea@nea.moe>2024-11-09 16:56:33 +0100
commitbcf51a084151dd8ef385a530c26a07632cedab60 (patch)
tree9226ae1eb53fae15a619eb75d5694015ae7db0a7 /example/build.gradle.kts
parent32ae3f959d35563396579a24d3989c2496b326b9 (diff)
downloadmcautotranslations-bcf51a084151dd8ef385a530c26a07632cedab60.tar.gz
mcautotranslations-bcf51a084151dd8ef385a530c26a07632cedab60.tar.bz2
mcautotranslations-bcf51a084151dd8ef385a530c26a07632cedab60.zip
meta: run example in ci
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")