forked from PaperMC/Paper
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eee55d0
commit 5729b29
Showing
5 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ Co-authored-by: Jake Potrebic <[email protected]> | |
Co-authored-by: Yannick Lamprecht <[email protected]> | ||
|
||
diff --git a/build.gradle.kts b/build.gradle.kts | ||
index 2f266350a787a4cfdfda1b0e760bfb7604cac43c..106d4d5756dc579c446699106f52462085ea9a52 100644 | ||
index 2f266350a787a4cfdfda1b0e760bfb7604cac43c..bae542d05c059d53199b9171bee505de818df349 100644 | ||
--- a/build.gradle.kts | ||
+++ b/build.gradle.kts | ||
@@ -11,12 +11,28 @@ java { | ||
|
||
val annotationsVersion = "24.1.0" | ||
val bungeeCordChatVersion = "1.20-R0.2" | ||
+val adventureVersion = "4.17.0-SNAPSHOT" | ||
+val adventureVersion = "4.17.0" | ||
+val apiAndDocs: Configuration by configurations.creating { | ||
+ attributes { | ||
+ attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.DOCUMENTATION)) | ||
|
@@ -66,12 +66,12 @@ index 2f266350a787a4cfdfda1b0e760bfb7604cac43c..106d4d5756dc579c446699106f524620 | |
"https://www.javadoc.io/doc/com.google.code.gson/gson/2.10.1", | ||
// Paper end | ||
+ // Paper start | ||
+ //"https://jd.advntr.dev/api/$adventureVersion/", | ||
+ //"https://jd.advntr.dev/text-minimessage/$adventureVersion/", | ||
+ //"https://jd.advntr.dev/text-serializer-gson/$adventureVersion/", | ||
+ //"https://jd.advntr.dev/text-serializer-legacy/$adventureVersion/", | ||
+ //"https://jd.advntr.dev/text-serializer-plain/$adventureVersion/", | ||
+ //"https://jd.advntr.dev/text-logger-slf4j/$adventureVersion/", | ||
+ "https://jd.advntr.dev/api/$adventureVersion/", | ||
+ "https://jd.advntr.dev/text-minimessage/$adventureVersion/", | ||
+ "https://jd.advntr.dev/text-serializer-gson/$adventureVersion/", | ||
+ "https://jd.advntr.dev/text-serializer-legacy/$adventureVersion/", | ||
+ "https://jd.advntr.dev/text-serializer-plain/$adventureVersion/", | ||
+ "https://jd.advntr.dev/text-logger-slf4j/$adventureVersion/", | ||
+ // Paper end | ||
) | ||
options.tags("apiNote:a:API Note:") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ Other changes: | |
Co-Authored-By: Emilia Kond <[email protected]> | ||
|
||
diff --git a/build.gradle.kts b/build.gradle.kts | ||
index 18221614060ec945cb8b197acd276e45450f7394..f7a1c358b0caf524707dcf1346d1d5a22500ce59 100644 | ||
index 18221614060ec945cb8b197acd276e45450f7394..90ca693814a82c30de238b0228750b769a9a9c80 100644 | ||
--- a/build.gradle.kts | ||
+++ b/build.gradle.kts | ||
@@ -5,9 +5,29 @@ plugins { | ||
|
@@ -44,7 +44,7 @@ index 18221614060ec945cb8b197acd276e45450f7394..f7a1c358b0caf524707dcf1346d1d5a2 | |
+ // Paper start | ||
+ implementation("org.jline:jline-terminal-jansi:3.21.0") | ||
+ implementation("net.minecrell:terminalconsoleappender:1.3.0") | ||
+ implementation("net.kyori:adventure-text-serializer-ansi:4.16.0") // Keep in sync with adventureVersion from Paper-API build file | ||
+ implementation("net.kyori:adventure-text-serializer-ansi:4.17.0") // Keep in sync with adventureVersion from Paper-API build file | ||
+ /* | ||
+ Required to add the missing Log4j2Plugins.dat file from log4j-core | ||
+ which has been removed by Mojang. Without it, log4j has to classload | ||
|