Making renovate happy

Closes #940
Closes #933
Closes #931
This commit is contained in:
NotMyFault
2021-02-27 15:52:50 +01:00
parent 32b5261e17
commit 6bd866bdf7
5 changed files with 14 additions and 36 deletions

View File

@ -25,18 +25,18 @@ applyPlatformAndCoreConfiguration()
dependencies {
constraints {
implementation( "org.yaml:snakeyaml") {
version { strictly("1.26") }
version { strictly("1.27") }
because("Bukkit provides SnakeYaml")
}
}
api(project(":worldedit-libs:core"))
implementation("de.schlichtherle:truezip:6.8.4")
implementation("net.java.truevfs:truevfs-profile-default_2.13:0.12.1")
implementation("net.java.truevfs:truevfs-profile-default_2.13:0.12.2")
implementation("org.mozilla:rhino-runtime:1.7.13")
implementation("org.yaml:snakeyaml")
implementation("com.google.guava:guava")
implementation("com.google.code.findbugs:jsr305:1.3.9")
implementation("com.google.code.findbugs:jsr305:3.0.2")
implementation("com.google.code.gson:gson")
implementation("org.slf4j:slf4j-api:${Versions.SLF4J}")
implementation("it.unimi.dsi:fastutil")
@ -54,7 +54,7 @@ dependencies {
annotationProcessor("com.google.auto.value:auto-value:${Versions.AUTO_VALUE}")
testImplementation("ch.qos.logback:logback-core:${Versions.LOGBACK}")
testImplementation("ch.qos.logback:logback-classic:${Versions.LOGBACK}")
implementation("com.github.luben:zstd-jni:1.4.8-5")
implementation("com.github.luben:zstd-jni:1.4.8-6")
compileOnly("net.fabiozumbi12:redprotect:1.9.6")
api("com.github.intellectualsites.plotsquared:PlotSquared-API:4.514") { isTransitive = false }
api("com.plotsquared:PlotSquared-Core:5.13.3") { isTransitive = false }
@ -109,7 +109,7 @@ tasks.named<Copy>("processResources") {
}
tasks.named<ShadowJar>("shadowJar") {
dependencies {
include(dependency("com.github.luben:zstd-jni:1.4.8-5"))
include(dependency("com.github.luben:zstd-jni:1.4.8-6"))
}
}