1
0
Fork 0
MinestomGameJam/build.gradle.kts
Andus 35514614eb Many Significant Changes
- Added:
  - QueueManager
  - GameManager
  - GameQueue
  - GameLobby
  - Server Settings
  - Basic NPC implementation
  - Randomized Elimination Messages
2024-08-11 02:10:39 +02:00

25 lines
No EOL
607 B
Kotlin

plugins {
id("java")
alias(libs.plugins.shadowJar)
}
group = "dev.celestialfox"
version = "1.0"
repositories {
mavenCentral()
}
dependencies {
implementation("net.minestom:minestom-snapshots:461c56e749")
implementation("dev.hollowcube:polar:1.11.1")
implementation("net.kyori:adventure-text-minimessage:4.17.0")
implementation("org.slf4j:slf4j-api:2.0.13")
implementation("ch.qos.logback:logback-classic:1.5.6")
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}