mirror of
https://gitlab.com/SamB440/rpgregions-2.git
synced 2025-12-28 19:29:16 +00:00
31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("junit:junit:4.5")
|
|
testImplementation("com.github.seeseemelk:MockBukkit-v1.17:1.12.0")
|
|
testImplementation("org.reflections:reflections:0.10.2")
|
|
|
|
implementation("net.islandearth:languagy:2.0.4-SNAPSHOT") // languagy
|
|
implementation("io.papermc:paperlib:1.0.4") // paperlib - async teleport on Paper
|
|
|
|
compileOnly("org.spigotmc:spigot-api:1.17-R0.1-SNAPSHOT") // spigot
|
|
compileOnly("com.github.MilkBowl:VaultAPI:1.7") // vault
|
|
compileOnly("me.clip:placeholderapi:2.10.4") // PAPI
|
|
compileOnly(":AlonsoLevels_v2.0-BETA") // alonsolevels
|
|
compileOnly("com.github.shynixn.headdatabase:hdb-api:1.0") // head database
|
|
compileOnly("org.jetbrains:annotations:22.0.0")
|
|
compileOnly("com.sk89q.worldguard:worldguard-bukkit:7.0.4-SNAPSHOT") {
|
|
exclude("com.destroystokyo.paper")
|
|
exclude("org.spigotmc")
|
|
}
|
|
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.0-SNAPSHOT") {
|
|
exclude("com.google")
|
|
exclude("org.bukkit")
|
|
exclude("org.spigotmc")
|
|
}
|
|
compileOnly("io.lumine.xikage:MythicMobs:4.9.1") {
|
|
exclude("org.apache.commons")
|
|
}
|
|
} |