summaryrefslogtreecommitdiffstats
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2025-08-25 22:28:24 -0500
committerLibravatar bigfoot547 <[email protected]>2025-08-25 22:28:24 -0500
commit954e102e836e19ea425253f1990fff8d76dd98b4 (patch)
tree2dc68f8a09efc5b11c88ee4154b6487db0baadbb /build.gradle.kts
initial commit
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts19
1 files changed, 19 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..b0da77f
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,19 @@
+plugins {
+ id("java")
+}
+
+group = "dev.figboot.launcher"
+version = "1.0-SNAPSHOT"
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ testImplementation(platform("org.junit:junit-bom:5.10.0"))
+ testImplementation("org.junit.jupiter:junit-jupiter")
+}
+
+tasks.test {
+ useJUnitPlatform()
+} \ No newline at end of file