Update build configuration and improve server status handling
All checks were successful
Build JStom / build (push) Successful in 1m27s

- Change Minestom dependency to use official snapshots
- Adjust repository URLs for better clarity
- Refactor server status handling to use ResponseData
This commit is contained in:
2026-01-26 19:28:00 +00:00
parent e06b356531
commit 469b6ff8ec
2 changed files with 6 additions and 7 deletions

View File

@@ -9,12 +9,13 @@ version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven("https://jitpack.io") // For Minestom
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io") // For other JitPack dependencies if any
}
dependencies {
// Minestom - using master-SNAPSHOT
implementation("com.github.Minestom:Minestom:master-SNAPSHOT")
// Minestom - using official snapshots
implementation("net.minestom:minestom-snapshots:dev")
// GraalJS for JavaScript engine
implementation("org.graalvm.polyglot:polyglot:24.1.2")