HungerGames/build.gradle.kts
Teriuihi 9cd55f0a18 Initial Hunger Games project with configuration system
Set up the Hunger Games plugin foundation, including configuration management classes for main settings, messages, and game-specific options. Added Gradle build setup, dependency management, and a TODO list for planned features.
2025-05-17 20:22:03 +02:00

29 lines
634 B
Plaintext

plugins {
id("java")
}
group = "com.alttd.hunger_games"
version = "1.0-SNAPSHOT"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
//Paper
compileOnly("io.papermc.paper:paper-api:1.20-R0.1-20230613.000034-20")
//WorldBorder API
compileOnly("com.github.yannicklamprecht:worldborderapi:1.210.0:dev")
}
tasks.test {
useJUnitPlatform()
}