Files
async/settings.gradle.kts
kayjaydee e201a227ea chore: project scaffolding and CI
Gradle 9.4 multi-module setup with Kotlin DSL and version catalog.
GitHub Actions builds on push and PR with JDK 25 (Temurin).
2026-04-28 16:29:46 +02:00

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")