This commit is contained in:
Intege-rs
2026-01-24 07:55:36 -05:00
commit 7a77188758
5298 changed files with 723645 additions and 0 deletions

22
build.gradle.kts Normal file
View File

@@ -0,0 +1,22 @@
plugins {
id("java")
}
group = "hytale-server.kotlin"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
sourceSets {
getByName("main") {
java.setSrcDirs(listOf("src"))
}
}