mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 16:29:45 +01:00
33 lines
1.1 KiB
Diff
33 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
|