mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 04:56:50 +01:00
9223f05a40
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes: c9cb08551 SPIGOT-7536: Using Crafter crashes server
32 lines
1.1 KiB
Diff
32 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 21:21:46 -0700
|
|
Subject: [PATCH] Temp adventure update
|
|
|
|
|
|
diff --git a/build.gradle.kts b/build.gradle.kts
|
|
index 6cfc43610940d3ab7c867352b27980a207ce3045..170a915098f09ace226648da342a04c5c7583d11 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -12,7 +12,21 @@ configurations.named(log4jPlugins.compileClasspathConfigurationName) {
|
|
}
|
|
val alsoShade: Configuration by configurations.creating
|
|
|
|
+val extraRuntime: Configuration by configurations.creating
|
|
+configurations.runtimeClasspath {
|
|
+ extendsFrom(extraRuntime)
|
|
+}
|
|
+repositories {
|
|
+ maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
|
|
+ mavenContent {
|
|
+ snapshotsOnly()
|
|
+ includeGroup("net.kyori")
|
|
+ }
|
|
+ }
|
|
+}
|
|
+
|
|
dependencies {
|
|
+ extraRuntime(platform("net.kyori:adventure-bom:4.15.0-SNAPSHOT"))
|
|
implementation(project(":paper-api"))
|
|
implementation(project(":paper-mojangapi"))
|
|
// Paper start
|