e201a227ea
Gradle 9.4 multi-module setup with Kotlin DSL and version catalog. GitHub Actions builds on push and PR with JDK 25 (Temurin).
14 lines
273 B
Kotlin
14 lines
273 B
Kotlin
rootProject.name = "hytale-async"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = "hytale"
|
|
url = uri("https://maven.hytale.com/release")
|
|
}
|
|
}
|
|
}
|
|
|
|
include("core", "ecs", "binding", "dist")
|