9
0
mirror of https://gitlab.com/SamB440/rpgregions-2.git synced 2025-12-29 11:49:08 +00:00
Files
rpgregions-2/api/build.gradle.kts
2022-01-17 20:28:59 +00:00

35 lines
1.2 KiB
Plaintext

plugins {
id("java")
}
dependencies {
testImplementation("junit:junit:4.13.2")
testImplementation("com.github.seeseemelk:MockBukkit-v1.17:1.13.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")
}
}
repositories {
mavenCentral()
}