From 050cf3edb3fc1f7e125f22cfbef5048177d9d150 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Sun, 4 Apr 2021 13:30:09 +0200 Subject: [PATCH] Update a few dependencies --- Bukkit/build.gradle.kts | 6 +++--- Core/build.gradle.kts | 16 +++++++++------- build.gradle.kts | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index 9d1adbbae..0ff48162f 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -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 } diff --git a/Core/build.gradle.kts b/Core/build.gradle.kts index 17085c46d..e7782cb0a 100644 --- a/Core/build.gradle.kts +++ b/Core/build.gradle.kts @@ -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") } diff --git a/build.gradle.kts b/build.gradle.kts index ce3b8fe1c..001cccfb8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -80,7 +80,7 @@ subprojects { allprojects { dependencies { // Tests - testImplementation("junit:junit:4.13") + testImplementation("junit:junit:4.13.2") } configure {