Update dependencies and add new BoosterTypes

The Galaxy-API and mcMMO dependencies have been updated to newer versions and three new BoosterTypes - 'crossbows', 'maces', and 'tridents' - have been added. Also, the Java language version has been upgraded from version 17 to version 21.
This commit is contained in:
Teriuihi 2024-07-21 18:07:35 +02:00
parent 4e1c832645
commit 6491b1b154
3 changed files with 6 additions and 3 deletions

View File

@ -26,6 +26,9 @@ public enum BoosterType {
TAMING("taming", MCMMO),
UNARMED("unarmed", MCMMO),
WOODCUTTING("woodcutting", MCMMO),
CROSSBOWS("crossbows", MCMMO),
MACES("maces", MCMMO),
TRIDENTS("tridents", MCMMO),
/**
* MYPET - Boosts MyPet exp gains

View File

@ -16,7 +16,7 @@ subprojects {
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
languageVersion.set(JavaLanguageVersion.of(21))
}
}

View File

@ -8,11 +8,11 @@ dependencies {
// API
implementation(project(":boosters-api"))
// Galaxy
compileOnly("com.alttd:Galaxy-API:1.19.2-R0.1-SNAPSHOT")
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT")
// MyPet
compileOnly("de.keyle:mypet:3.12-SNAPSHOT")
// mcMMO
compileOnly("com.gmail.nossr50.mcMMO:mcMMO:2.1.206") {
compileOnly("com.gmail.nossr50.mcMMO:mcMMO:2.2.004") {
exclude("com.sk89q.worldguard")
}