Initial commit

This commit is contained in:
RedSavant
2026-01-21 14:59:11 +01:00
commit 2033df2655
53 changed files with 7791 additions and 0 deletions

29
app/build.gradle.kts Normal file
View File

@@ -0,0 +1,29 @@
plugins {
java
}
group = "org.example"
version = "1.0.0"
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
}
dependencies {
// Hytale Server API - compile only since it's provided at runtime
compileOnly(files("../server/Server/HytaleServer.jar"))
// Testing
testImplementation(libs.junit)
}
tasks.jar {
// Set the archive name
archiveBaseName.set("ExamplePlugin")
}