Skip to content

Commit ce581c3

Browse files
authored
Bump deps to match Vanilla versions (#13744)
1 parent d29063d commit ce581c3

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

paper-api/build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ java {
1414
val annotationsVersion = "26.0.2"
1515
val adventureVersion = "4.26.1"
1616
val bungeeCordChatVersion = "1.21-R0.2-deprecated+build.21"
17-
val slf4jVersion = "2.0.16"
18-
val log4jVersion = "2.24.1"
17+
val slf4jVersion = "2.0.17"
18+
val log4jVersion = "2.25.2"
1919

2020
val apiAndDocs: Configuration by configurations.creating {
2121
attributes {
@@ -42,13 +42,13 @@ abstract class MockitoAgentProvider : CommandLineArgumentProvider {
4242

4343
dependencies {
4444
// api dependencies are listed transitively to API consumers
45-
api("com.google.guava:guava:33.3.1-jre")
46-
api("com.google.code.gson:gson:2.11.0")
45+
api("com.google.guava:guava:33.5.0-jre")
46+
api("com.google.code.gson:gson:2.13.2")
4747
api("org.yaml:snakeyaml:2.2")
4848
api("org.joml:joml:1.10.8") {
4949
isTransitive = false // https://github.com/JOML-CI/JOML/issues/352
5050
}
51-
api("it.unimi.dsi:fastutil:8.5.15")
51+
api("it.unimi.dsi:fastutil:8.5.18")
5252
api("org.apache.logging.log4j:log4j-api:$log4jVersion")
5353
api("org.slf4j:slf4j-api:$slf4jVersion")
5454
api("com.mojang:brigadier:1.3.10")
@@ -187,11 +187,11 @@ tasks.withType<Javadoc>().configureEach {
187187
options.use()
188188
options.isDocFilesSubDirs = true
189189
options.links(
190-
"https://guava.dev/releases/33.3.1-jre/api/docs/",
190+
"https://guava.dev/releases/33.5.0-jre/api/docs/",
191191
"https://www.javadocs.dev/org.yaml/snakeyaml/2.2/",
192192
"https://www.javadocs.dev/org.jetbrains/annotations/$annotationsVersion/",
193193
"https://www.javadocs.dev/org.joml/joml/1.10.8/",
194-
"https://www.javadocs.dev/com.google.code.gson/gson/2.11.0",
194+
"https://www.javadocs.dev/com.google.code.gson/gson/2.13.2",
195195
"https://jspecify.dev/docs/api/",
196196
"https://jd.advntr.dev/api/$adventureVersion/",
197197
"https://jd.advntr.dev/key/$adventureVersion/",

paper-server/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,16 +122,16 @@ dependencies {
122122
all its classes to check if they are plugins.
123123
Scanning takes about 1-2 seconds so adding this speeds up the server start.
124124
*/
125-
implementation("org.apache.logging.log4j:log4j-core:2.24.1")
126-
log4jPlugins.annotationProcessorConfigurationName("org.apache.logging.log4j:log4j-core:2.24.1") // Needed to generate meta for our Log4j plugins
125+
implementation("org.apache.logging.log4j:log4j-core:2.25.2")
126+
log4jPlugins.annotationProcessorConfigurationName("org.apache.logging.log4j:log4j-core:2.25.2") // Needed to generate meta for our Log4j plugins
127127
runtimeOnly(log4jPlugins.output)
128128
alsoShade(log4jPlugins.output)
129129

130130
implementation("com.velocitypowered:velocity-native:3.4.0-SNAPSHOT") {
131131
isTransitive = false
132132
}
133133
implementation("io.netty:netty-codec-haproxy:4.2.7.Final") // Add support for proxy protocol
134-
implementation("org.apache.logging.log4j:log4j-iostreams:2.24.1")
134+
implementation("org.apache.logging.log4j:log4j-iostreams:2.25.2")
135135
implementation("org.ow2.asm:asm-commons:9.9.1")
136136
implementation("org.spongepowered:configurate-yaml:4.2.0")
137137

0 commit comments

Comments
 (0)