mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 13:36:44 +01:00
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
|
|
Date: Wed, 6 Dec 2023 13:38:10 -0700
|
|
Subject: [PATCH] Temp adventure update
|
|
|
|
|
|
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
index e827ee211e3c65dc68ac5867fd8476639df63645..84cf134115ffce4ada686e8f742fc02a52e0be0e 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -25,6 +25,10 @@ val apiAndDocs: Configuration by configurations.creating {
|
|
configurations.api {
|
|
extendsFrom(apiAndDocs)
|
|
}
|
|
+val extraRuntime: Configuration by configurations.creating
|
|
+configurations.runtimeClasspath {
|
|
+ extendsFrom(extraRuntime)
|
|
+}
|
|
|
|
dependencies {
|
|
// api dependencies are listed transitively to API consumers
|
|
@@ -39,6 +43,7 @@ dependencies {
|
|
}
|
|
api("it.unimi.dsi:fastutil:8.5.6")
|
|
apiAndDocs(platform("net.kyori:adventure-bom:$adventureVersion"))
|
|
+ extraRuntime(platform("net.kyori:adventure-bom:4.15.0-SNAPSHOT"))
|
|
apiAndDocs("net.kyori:adventure-api")
|
|
apiAndDocs("net.kyori:adventure-text-minimessage")
|
|
apiAndDocs("net.kyori:adventure-text-serializer-gson")
|