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.
29 lines
634 B
Plaintext
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()
|
|
}
|