diff --git a/buildSrc/src/main/kotlin/PlatformConfig.kt b/buildSrc/src/main/kotlin/PlatformConfig.kt index 1673303f9..2f5b6494b 100644 --- a/buildSrc/src/main/kotlin/PlatformConfig.kt +++ b/buildSrc/src/main/kotlin/PlatformConfig.kt @@ -72,7 +72,7 @@ fun Project.applyPlatformAndCoreConfiguration() { options.encoding = "UTF-8" links( "https://javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.2/", - "https://jd.adventure.kyori.net/api/4.8.1/", + "https://jd.adventure.kyori.net/api/4.9.0/", "https://javadoc.io/doc/org.apache.logging.log4j/log4j-api/2.14.1/", "https://javadoc.io/doc/com.google.guava/guava/21.0/", "https://www.antlr.org/api/Java/", diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1723e331c..4cc7085b9 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -19,7 +19,7 @@ mcore = "7.0.1" residence = "4.5._13.1" towny = "0.97.1.7" protocollib = "4.7.0" -plotsquaredV6 = "6.0.9-SNAPSHOT" +plotsquaredV6 = "6.0.10-SNAPSHOT" plotsquaredV4 = "4.514" redprotect = "1.9.6" @@ -28,10 +28,10 @@ flow-math = "1.0.3" paperlib = "1.0.6" bstats = "2.2.1" serverlib = "2.2.1" -paster = "1.1.0" +paster = "1.1.1" sparsebitset = "1.2" parallelgzip = "1.0.5" -adventure = "4.8.1" +adventure = "4.9.0" truezip = "6.8.4" auto-value = "1.7.4" findbugs = "3.0.2" @@ -55,7 +55,7 @@ mockito = "3.11.2" checker-qual = "3.16.0" # Gradle plugins -pluginyml = "0.4.0" +pluginyml = "0.5.0" [libraries] # Minecraft expectations diff --git a/renovate.json b/renovate.json index 8242aeb71..5a426d561 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,19 @@ { "extends": [ - "config:base" + "config:base", + ":disableDependencyDashboard" ], - "ignoreDeps": ["guava", "rhino-runtime", "mockito-core", "antlr4", "antlr4-runtime", "paranamer", "fastutil", "auto-value-annotations", "auto-value", "gson"] + "ignoreDeps": [ + "guava", + "rhino-runtime", + "mockito-core", + "antlr4", + "antlr4-runtime", + "paranamer", + "fastutil", + "auto-value-annotations", + "auto-value", + "gson", + "fabric-api" + ] } diff --git a/worldedit-bukkit/build.gradle.kts b/worldedit-bukkit/build.gradle.kts index 3bcc03013..4470272a6 100644 --- a/worldedit-bukkit/build.gradle.kts +++ b/worldedit-bukkit/build.gradle.kts @@ -104,6 +104,7 @@ dependencies { api(libs.sparsebitset) { isTransitive = false } api(libs.parallelgzip) { isTransitive = false } compileOnly(libs.adventure) + compileOnlyApi(libs.checkerqual) // Tests testImplementation(libs.mockito) @@ -159,7 +160,7 @@ tasks.named("shadowJar") { include(dependency("org.incendo.serverlib:ServerLib:2.2.1")) } relocate("com.intellectualsites.paster", "com.fastasyncworldedit.paster") { - include(dependency("com.intellectualsites.paster:Paster:1.1.0")) + include(dependency("com.intellectualsites.paster:Paster:1.1.1")) } relocate("com.github.luben", "com.fastasyncworldedit.core.zstd") { include(dependency("com.github.luben:zstd-jni:1.5.0-4")) @@ -171,7 +172,7 @@ tasks.named("shadowJar") { include(dependency("org.lz4:lz4-java:1.8.0")) } relocate("net.kyori", "com.fastasyncworldedit.core.adventure") { - include(dependency("net.kyori:adventure-nbt:4.8.1")) + include(dependency("net.kyori:adventure-nbt:4.9.0")) } relocate("com.zaxxer", "com.fastasyncworldedit.core.math") { include(dependency("com.zaxxer:SparseBitSet:1.2"))