Update a few dependencies

This commit is contained in:
NotMyFault 2021-04-04 13:30:09 +02:00
parent 84d5ebfa41
commit 050cf3edb3
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
3 changed files with 13 additions and 11 deletions

View File

@ -42,14 +42,14 @@ dependencies {
// //
// Metrics // Metrics
implementation("org.bstats:bstats-bukkit:2.1.0") implementation("org.bstats:bstats-bukkit:2.2.1")
// Minecraft // Minecraft
compileOnlyApi("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT") compileOnlyApi("com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT")
implementation("io.papermc:paperlib:1.0.6") implementation("io.papermc:paperlib:1.0.6")
// Plugins // 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.bukkit")
exclude(group = "org.spigotmc") exclude(group = "org.spigotmc")
} }
@ -57,7 +57,7 @@ dependencies {
exclude(group = "org.bukkit") exclude(group = "org.bukkit")
} }
compileOnly("me.clip:placeholderapi:2.10.9") 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("net.ess3:EssentialsX:2.18.2")
compileOnly("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT") { isTransitive = false } compileOnly("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT") { isTransitive = false }
compileOnly("be.maximvdw:MVdWPlaceholderAPI:3.1.1") { isTransitive = false } compileOnly("be.maximvdw:MVdWPlaceholderAPI:3.1.1") { isTransitive = false }

View File

@ -2,21 +2,23 @@ import java.time.format.DateTimeFormatter
dependencies { dependencies {
// Expected everywhere. // Expected everywhere.
compileOnlyApi("org.checkerframework:checker-qual:3.9.0") compileOnlyApi("org.checkerframework:checker-qual:3.12.0")
// Minecraft expectations // Minecraft expectations
compileOnlyApi("com.google.guava:guava:21.0") { 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") { compileOnlyApi("com.google.code.gson:gson:2.8.0") {
because("Minecraft uses 2.8.0") because("Minecraft uses 2.8.0")
} }
// Platform expectations // 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 // 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") api("net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT")
// Guice // Guice
@ -29,15 +31,15 @@ dependencies {
compileOnlyApi("com.google.code.findbugs:annotations:3.0.1") compileOnlyApi("com.google.code.findbugs:annotations:3.0.1")
// Plugins // 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 = "bukkit-classloader-check")
exclude(group = "mockito-core") exclude(group = "mockito-core")
exclude(group = "dummypermscompat") exclude(group = "dummypermscompat")
} }
testImplementation("com.sk89q.worldedit:worldedit-core:7.2.0") testImplementation("com.sk89q.worldedit:worldedit-core:7.2.2")
// Logging // 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") { runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") {
exclude(group = "org.slf4j") exclude(group = "org.slf4j")
} }

View File

@ -80,7 +80,7 @@ subprojects {
allprojects { allprojects {
dependencies { dependencies {
// Tests // Tests
testImplementation("junit:junit:4.13") testImplementation("junit:junit:4.13.2")
} }
configure<JavaPluginConvention> { configure<JavaPluginConvention> {