Initial setup

This commit is contained in:
gamer147
2025-11-05 10:12:21 -05:00
commit 081658af45
22 changed files with 759 additions and 0 deletions

25
build.gradle.kts Normal file
View File

@@ -0,0 +1,25 @@
plugins {
id("java")
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven {
url = uri("https://gotti.no-ip.org/maven/repository")
}
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("org.gotti.wurmunlimited:server-modlauncher:0.46")
implementation("com.github.Sindusk:sindusklibrary:v2.3")
}
tasks.test {
useJUnitPlatform()
}