mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 11:45:19 +01:00
Update a few dependencies
This commit is contained in:
parent
84d5ebfa41
commit
050cf3edb3
@ -42,14 +42,14 @@ dependencies {
|
||||
//
|
||||
|
||||
// Metrics
|
||||
implementation("org.bstats:bstats-bukkit:2.1.0")
|
||||
implementation("org.bstats:bstats-bukkit:2.2.1")
|
||||
|
||||
// Minecraft
|
||||
compileOnlyApi("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT")
|
||||
implementation("io.papermc:paperlib:1.0.6")
|
||||
|
||||
// Plugins
|
||||
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.0") {
|
||||
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.2") {
|
||||
exclude(group = "org.bukkit")
|
||||
exclude(group = "org.spigotmc")
|
||||
}
|
||||
@ -57,7 +57,7 @@ dependencies {
|
||||
exclude(group = "org.bukkit")
|
||||
}
|
||||
compileOnly("me.clip:placeholderapi:2.10.9")
|
||||
compileOnly("net.luckperms:api:5.2")
|
||||
compileOnly("net.luckperms:api:5.3")
|
||||
compileOnly("net.ess3:EssentialsX:2.18.2")
|
||||
compileOnly("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT") { isTransitive = false }
|
||||
compileOnly("be.maximvdw:MVdWPlaceholderAPI:3.1.1") { isTransitive = false }
|
||||
|
@ -2,21 +2,23 @@ import java.time.format.DateTimeFormatter
|
||||
|
||||
dependencies {
|
||||
// Expected everywhere.
|
||||
compileOnlyApi("org.checkerframework:checker-qual:3.9.0")
|
||||
compileOnlyApi("org.checkerframework:checker-qual:3.12.0")
|
||||
|
||||
// Minecraft expectations
|
||||
compileOnlyApi("com.google.guava:guava:21.0") {
|
||||
because("Minecraft uses v21.0")
|
||||
because("Minecraft uses 21.0")
|
||||
}
|
||||
compileOnlyApi("com.google.code.gson:gson:2.8.0") {
|
||||
because("Minecraft uses 2.8.0")
|
||||
}
|
||||
|
||||
// Platform expectations
|
||||
compileOnlyApi("org.yaml:snakeyaml:1.26") // Some platforms provide this
|
||||
compileOnlyApi("org.yaml:snakeyaml:1.27") {
|
||||
because("Bukkit uses 1.27")
|
||||
}
|
||||
|
||||
// Adventure stuff
|
||||
api("net.kyori:adventure-api:4.3.0")
|
||||
api("net.kyori:adventure-api:4.7.0")
|
||||
api("net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT")
|
||||
|
||||
// Guice
|
||||
@ -29,15 +31,15 @@ dependencies {
|
||||
compileOnlyApi("com.google.code.findbugs:annotations:3.0.1")
|
||||
|
||||
// Plugins
|
||||
compileOnlyApi("com.sk89q.worldedit:worldedit-core:7.2.0") {
|
||||
compileOnlyApi("com.sk89q.worldedit:worldedit-core:7.2.2") {
|
||||
exclude(group = "bukkit-classloader-check")
|
||||
exclude(group = "mockito-core")
|
||||
exclude(group = "dummypermscompat")
|
||||
}
|
||||
testImplementation("com.sk89q.worldedit:worldedit-core:7.2.0")
|
||||
testImplementation("com.sk89q.worldedit:worldedit-core:7.2.2")
|
||||
|
||||
// Logging
|
||||
api("org.slf4j:slf4j-api:1.7.25")
|
||||
api("org.slf4j:slf4j-api:1.7.30")
|
||||
runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") {
|
||||
exclude(group = "org.slf4j")
|
||||
}
|
||||
|
@ -80,7 +80,7 @@ subprojects {
|
||||
allprojects {
|
||||
dependencies {
|
||||
// Tests
|
||||
testImplementation("junit:junit:4.13")
|
||||
testImplementation("junit:junit:4.13.2")
|
||||
}
|
||||
|
||||
configure<JavaPluginConvention> {
|
||||
|
Loading…
Reference in New Issue
Block a user