summaryrefslogtreecommitdiffstats
path: root/core/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 /core/build.gradle.kts
initial commit
Diffstat (limited to 'core/build.gradle.kts')
-rw-r--r--core/build.gradle.kts28
1 files changed, 28 insertions, 0 deletions
diff --git a/core/build.gradle.kts b/core/build.gradle.kts
new file mode 100644
index 0000000..b65c6b9
--- /dev/null
+++ b/core/build.gradle.kts
@@ -0,0 +1,28 @@
+plugins {
+ `java-library`
+ id("io.freefair.lombok") version "8.14.2"
+}
+
+java {
+ toolchain {
+ languageVersion = JavaLanguageVersion.of(8)
+ }
+}
+
+group = "dev.figboot.launcher"
+version = "1.0-SNAPSHOT"
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ implementation("org.slf4j:slf4j-api:1.7.25")
+
+ testImplementation(platform("org.junit:junit-bom:5.10.0"))
+ testImplementation("org.junit.jupiter:junit-jupiter")
+}
+
+tasks.test {
+ useJUnitPlatform()
+}