5fc3bda1c5
- player-load: load-on-join (PlayerReadyEvent → IO → modify). - async-moderation: IAsyncEvent → coroutine bridge for chat moderation. - periodic-leaderboard: pluginScope loop with parallel reads. - bounty-board: kitchen-sink demo exercising every v0.1 primitive.
19 lines
438 B
Kotlin
19 lines
438 B
Kotlin
rootProject.name = "bounty-board"
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.hytale.com/release") { name = "hytale" }
|
|
}
|
|
versionCatalogs {
|
|
create("libs") { from(files("../../gradle/libs.versions.toml")) }
|
|
}
|
|
}
|
|
|
|
includeBuild("../..") {
|
|
dependencySubstitution {
|
|
substitute(module("com.mythlane:async"))
|
|
.using(project(":dist"))
|
|
}
|
|
}
|