From 955f6b87e2318e3ea22ab4dbc4a391bc0a96202b Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Wed, 1 Sep 2021 06:36:00 -0400 Subject: [PATCH] Assorted dependency updates --- api/build.gradle | 2 +- build.gradle | 7 +++---- proxy/build.gradle | 16 ++++++++-------- 3 files changed, 12 insertions(+), 13 deletions(-) diff --git a/api/build.gradle b/api/build.gradle index 6fc5999b0..e9c3e43a0 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -25,7 +25,7 @@ sourceSets { } dependencies { - api 'com.google.code.gson:gson:2.8.7' + api 'com.google.code.gson:gson:2.8.8' api "com.google.guava:guava:${guavaVersion}" // DEPRECATED: Will be removed in Velocity Polymer diff --git a/build.gradle b/build.gradle index 9812cac1c..9e08b53a2 100644 --- a/build.gradle +++ b/build.gradle @@ -21,15 +21,14 @@ allprojects { ext { // dependency versions - textVersion = '3.0.4' adventureVersion = '4.8.1' junitVersion = '5.7.0' slf4jVersion = '1.7.30' - log4jVersion = '2.13.3' - nettyVersion = '4.1.66.Final' + log4jVersion = '2.14.1' + nettyVersion = '4.1.67.Final' guavaVersion = '25.1-jre' checkerFrameworkVersion = '3.6.1' - configurateVersion = '3.7.1' + configurateVersion = '3.7.2' getCurrentShortRevision = { new ByteArrayOutputStream().withStream { os -> diff --git a/proxy/build.gradle b/proxy/build.gradle index fc5be0265..0669402d1 100644 --- a/proxy/build.gradle +++ b/proxy/build.gradle @@ -61,26 +61,26 @@ dependencies { implementation 'net.sf.jopt-simple:jopt-simple:5.0.4' // command-line options implementation 'net.minecrell:terminalconsoleappender:1.2.0' - runtimeOnly 'org.jline:jline-terminal-jansi:3.16.0' // Needed for JLine - runtimeOnly 'com.lmax:disruptor:3.4.2' // Async loggers + runtimeOnly 'org.jline:jline-terminal-jansi:3.20.0' // Needed for JLine + runtimeOnly 'com.lmax:disruptor:3.4.4' // Async loggers implementation 'it.unimi.dsi:fastutil-core:8.5.4' implementation(platform("net.kyori:adventure-bom:${adventureVersion}")) implementation("net.kyori:adventure-nbt") - implementation 'org.asynchttpclient:async-http-client:2.12.1' + implementation 'org.asynchttpclient:async-http-client:2.12.3' - implementation 'com.spotify:completable-futures:0.3.3' + implementation 'com.spotify:completable-futures:0.3.5' - implementation 'com.electronwill.night-config:toml:3.6.3' + implementation 'com.electronwill.night-config:toml:3.6.4' - implementation 'org.bstats:bstats-base:2.2.0' + implementation 'org.bstats:bstats-base:2.2.1' implementation 'org.lanternpowered:lmbda:2.0.0' - implementation 'com.github.ben-manes.caffeine:caffeine:3.0.2' + implementation 'com.github.ben-manes.caffeine:caffeine:3.0.3' - compileOnly 'com.github.spotbugs:spotbugs-annotations:4.1.2' + compileOnly 'com.github.spotbugs:spotbugs-annotations:4.4.0' testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}" testImplementation "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"