mirror of
https://gitlab.com/SamB440/rpgregions-2.git
synced 2025-12-28 03:09:14 +00:00
35 lines
1.4 KiB
Plaintext
35 lines
1.4 KiB
Plaintext
plugins {
|
|
id("buildlogic.java-publish-conventions")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.github.Redempt:Crunch:2.0.3") // used to evaluating mathematical expressions
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("com.github.seeseemelk:MockBukkit-v1.21:3.133.2")
|
|
testImplementation("org.reflections:reflections:0.10.2")
|
|
|
|
compileOnly("org.spigotmc:spigot-api:${properties["spigot_version"]}")
|
|
compileOnly("com.github.ben-manes.caffeine:caffeine:3.1.8") { // IMPLEMENTED VIA LIBRARIES
|
|
exclude("org.checkerframework")
|
|
}
|
|
compileOnly("io.papermc:paperlib:1.0.7") // we include paperlib and relocate elsewhere
|
|
compileOnly("com.github.MilkBowl:VaultAPI:1.7") // vault
|
|
compileOnly("me.clip:placeholderapi:2.11.6") // PAPI
|
|
compileOnly("com.github.shynixn.headdatabase:hdb-api:1.0") // head database
|
|
compileOnly("com.sk89q.worldguard:worldguard-bukkit:${properties["worldguard_version"]}") {
|
|
exclude("com.destroystokyo.paper")
|
|
exclude("org.spigotmc")
|
|
exclude("com.google")
|
|
}
|
|
compileOnly("com.sk89q.worldedit:worldedit-bukkit:${properties["worldedit_version"]}") {
|
|
exclude("com.google")
|
|
exclude("org.bukkit")
|
|
exclude("org.spigotmc")
|
|
}
|
|
compileOnly("io.lumine:Mythic-Dist:5.3.5") {
|
|
exclude("org.apache.commons")
|
|
exclude("com.google")
|
|
}
|
|
}
|