Skip to content

Commit

Permalink
Bump bungeecord-chat api to fix issue with ProtocolStringReplacer
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreeam-qwq committed Feb 2, 2024
1 parent 393a7e0 commit 6a9e0da
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions patches/api/0005-Bump-Dependencies.patch
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@ Subject: [PATCH] Bump Dependencies


diff --git a/build.gradle.kts b/build.gradle.kts
index 0d9531a62d7667b98a57bd6b8e627a3e2f105001..087cb047c73d8cecdea32d16175bebf19b95ef1e 100644
index 0d9531a62d7667b98a57bd6b8e627a3e2f105001..e6d9550e7e1226a75bb44a1cb599625f006f9a4b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -9,11 +9,11 @@ java {
withJavadocJar()
}

-val annotationsVersion = "24.0.1"
-val bungeeCordChatVersion = "1.20-R0.1"
+val annotationsVersion = "24.1.0" // Leaf - Bump Dependencies
val bungeeCordChatVersion = "1.20-R0.1"
+val bungeeCordChatVersion = "1.20-R0.2-deprecated+build.18" // Leaf - Bump Dependencies
val adventureVersion = "4.15.0"
-val slf4jVersion = "2.0.9"
-val log4jVersion = "2.17.1"
Expand All @@ -23,15 +24,19 @@ index 0d9531a62d7667b98a57bd6b8e627a3e2f105001..087cb047c73d8cecdea32d16175bebf1
val apiAndDocs: Configuration by configurations.creating {
attributes {
attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION))
@@ -28,7 +28,7 @@ configurations.api {
@@ -28,10 +28,10 @@ configurations.api {

dependencies {
// api dependencies are listed transitively to API consumers
- api("com.google.guava:guava:32.1.2-jre")
+ api("com.google.guava:guava:33.0.0-jre") // Leaf - Bump Dependencies
api("com.google.code.gson:gson:2.10.1")
// Paper start - adventure
api("net.md-5:bungeecord-chat:$bungeeCordChatVersion-deprecated+build.14") {
- api("net.md-5:bungeecord-chat:$bungeeCordChatVersion-deprecated+build.14") {
+ api("net.md-5:bungeecord-chat:$bungeeCordChatVersion") { // Leaf - Bump Dependencies
exclude("com.google.guava", "guava")
}
// Paper - adventure
@@ -41,7 +41,7 @@ dependencies {
api("com.googlecode.json-simple:json-simple:1.1.1") {
isTransitive = false // includes junit
Expand Down

0 comments on commit 6a9e0da

Please sign in to comment.