mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-19 15:09:25 +00:00
74 lines
3.8 KiB
Diff
74 lines
3.8 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Dreeam <61569423+Dreeam-qwq@users.noreply.github.com>
|
|
Date: Fri, 28 Oct 2022 17:48:45 -0400
|
|
Subject: [PATCH] Bump Dependencies
|
|
|
|
|
|
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
index c8f031712006d95c59027791be1bdcdc2bd836c4..99c0750dcc87f5f3b19c5e9e4e9067d49443732e 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -22,13 +22,13 @@ dependencies {
|
|
all its classes to check if they are plugins.
|
|
Scanning takes about 1-2 seconds so adding this speeds up the server start.
|
|
*/
|
|
- implementation("org.apache.logging.log4j:log4j-core:2.14.1") // Paper - implementation
|
|
- annotationProcessor("org.apache.logging.log4j:log4j-core:2.14.1") // Paper - Needed to generate meta for our Log4j plugins
|
|
- implementation("io.netty:netty-codec-haproxy:4.1.77.Final") // Paper - Add support for proxy protocol
|
|
+ implementation("org.apache.logging.log4j:log4j-core:2.19.0") // Paper - implementation
|
|
+ annotationProcessor("org.apache.logging.log4j:log4j-core:2.19.0") // Paper - Needed to generate meta for our Log4j plugins
|
|
+ implementation("io.netty:netty-codec-haproxy:4.1.85.Final") // Paper - Add support for proxy protocol
|
|
// Paper end
|
|
implementation("org.apache.logging.log4j:log4j-iostreams:2.19.0") // Paper - remove exclusion
|
|
- implementation("org.ow2.asm:asm:9.3")
|
|
- implementation("org.ow2.asm:asm-commons:9.3") // Paper - ASM event executor generation
|
|
+ implementation("org.ow2.asm:asm:9.4")
|
|
+ implementation("org.ow2.asm:asm-commons:9.4") // Paper - ASM event executor generation
|
|
implementation("org.spongepowered:configurate-yaml:4.1.2") // Paper - config files
|
|
implementation("commons-lang:commons-lang:2.6")
|
|
implementation("net.fabricmc:mapping-io:0.3.0") // Paper - needed to read mappings for stacktrace deobfuscation
|
|
@@ -37,27 +37,27 @@ dependencies {
|
|
isTransitive = false
|
|
}
|
|
// Paper end
|
|
- runtimeOnly("org.xerial:sqlite-jdbc:3.36.0.3")
|
|
- runtimeOnly("mysql:mysql-connector-java:8.0.29")
|
|
+ runtimeOnly("org.xerial:sqlite-jdbc:3.40.0.0")
|
|
+ runtimeOnly("mysql:mysql-connector-java:8.0.30")
|
|
runtimeOnly("com.lmax:disruptor:3.4.4") // Paper
|
|
|
|
runtimeOnly("org.apache.maven:maven-resolver-provider:3.8.5")
|
|
- runtimeOnly("org.apache.maven.resolver:maven-resolver-connector-basic:1.7.3")
|
|
- runtimeOnly("org.apache.maven.resolver:maven-resolver-transport-http:1.7.3")
|
|
+ runtimeOnly("org.apache.maven.resolver:maven-resolver-connector-basic:1.9.2")
|
|
+ runtimeOnly("org.apache.maven.resolver:maven-resolver-transport-http:1.9.2")
|
|
|
|
// Pufferfish start
|
|
- implementation("org.yaml:snakeyaml:1.32")
|
|
- implementation ("me.carleslc.Simple-YAML:Simple-Yaml:1.8.2") {
|
|
+ implementation("org.yaml:snakeyaml:1.33")
|
|
+ implementation ("me.carleslc.Simple-YAML:Simple-Yaml:1.8.3") {
|
|
exclude(group="org.yaml", module="snakeyaml")
|
|
}
|
|
// Pufferfish end
|
|
implementation("com.github.technove:Flare:34637f3f87") // Pufferfish - flare
|
|
|
|
- testImplementation("io.github.classgraph:classgraph:4.8.47") // Paper - mob goal test
|
|
+ testImplementation("io.github.classgraph:classgraph:4.8.152") // Paper - mob goal test
|
|
testImplementation("junit:junit:4.13.2")
|
|
- testImplementation("org.hamcrest:hamcrest-library:1.3")
|
|
+ testImplementation("org.hamcrest:hamcrest-library:2.2")
|
|
|
|
- implementation("io.netty:netty-all:4.1.77.Final"); // Paper - Bump netty
|
|
+ implementation("io.netty:netty-all:4.1.85.Final"); // Paper - Bump netty
|
|
}
|
|
|
|
val craftbukkitPackageVersion = "1_19_R2" // Paper
|
|
@@ -206,3 +206,6 @@ tasks.registerRunTask("runDev") {
|
|
description = "Spin up a non-relocated Mojang-mapped test server"
|
|
classpath(sourceSets.main.map { it.runtimeClasspath })
|
|
}
|
|
+repositories {
|
|
+ mavenCentral()
|
|
+}
|