From 9be4e07a3eca5ca2c03dfdbcf21973e3eae0a759 Mon Sep 17 00:00:00 2001 From: Bjarne Koll Date: Tue, 25 Feb 2025 21:44:42 +0100 Subject: [PATCH] Pin snapshot dependencies (#12185) Additionally pins configurate-core as a transitive dependency of configurate-yml, as the yaml snapshot depends on a snapshot itself. --- paper-server/build.gradle.kts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/paper-server/build.gradle.kts b/paper-server/build.gradle.kts index e24fe4a245..84d1b6783c 100644 --- a/paper-server/build.gradle.kts +++ b/paper-server/build.gradle.kts @@ -137,13 +137,14 @@ dependencies { runtimeOnly(log4jPlugins.output) alsoShade(log4jPlugins.output) - implementation("com.velocitypowered:velocity-native:3.4.0-SNAPSHOT") { + implementation("com.velocitypowered:velocity-native:3.4.0-20250222.161222-36") { isTransitive = false } implementation("io.netty:netty-codec-haproxy:4.1.115.Final") // Add support for proxy protocol implementation("org.apache.logging.log4j:log4j-iostreams:2.24.1") implementation("org.ow2.asm:asm-commons:9.7.1") - implementation("org.spongepowered:configurate-yaml:4.2.0-SNAPSHOT") + implementation("org.spongepowered:configurate-yaml:4.2.0-20250225.064233-199") + implementation("org.spongepowered:configurate-core:4.2.0-20250225.064233-204") // Pinned dependency of above pinned yaml snapshot. implementation("commons-lang:commons-lang:2.6") runtimeOnly("org.xerial:sqlite-jdbc:3.47.0.0") runtimeOnly("com.mysql:mysql-connector-j:9.1.0") @@ -173,7 +174,7 @@ dependencies { // Spark implementation("me.lucko:spark-api:0.1-20240720.200737-2") - implementation("me.lucko:spark-paper:1.10.119-SNAPSHOT") + implementation("me.lucko:spark-paper:1.10.119-20241121.092015-1") } tasks.jar {