2026.01.24-6e2d4fc36

This commit is contained in:
Intege-rs
2026-01-24 08:48:01 -05:00
parent 7a77188758
commit 6a7573157c
2003 changed files with 13044 additions and 14337 deletions

View File

@@ -1,3 +1,5 @@
import org.apache.tools.ant.taskdefs.condition.Os
plugins {
id("java")
}
@@ -10,9 +12,14 @@ repositories {
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
implementation(files("${System.getenv("APPDATA")}/Hytale/install/release/package/game/latest/Server/HytaleServer.jar"))
}
}
tasks.wrapper {
gradleVersion = "8.14"
distributionType = Wrapper.DistributionType.ALL
}
sourceSets {