Update adventure

This commit is contained in:
Jason Penilla 2023-12-06 21:04:46 -07:00
parent 1e5f347169
commit f53cff02ff
6 changed files with 17 additions and 25 deletions

3
.gitmodules vendored
View file

@ -10,6 +10,3 @@
[submodule "work/Spigot"] [submodule "work/Spigot"]
path = work/Spigot path = work/Spigot
url = https://hub.spigotmc.org/stash/scm/spigot/spigot.git url = https://hub.spigotmc.org/stash/scm/spigot/spigot.git
[submodule "adventure-temp"]
path = adventure-temp
url = https://github.com/KyoriPowered/adventure.git

@ -1 +0,0 @@
Subproject commit 6feacda2eedef5edfb20e280540d00933861886e

View file

@ -113,6 +113,7 @@ tasks.generateDevelopmentBundle {
libraryRepositories.addAll( libraryRepositories.addAll(
"https://repo.maven.apache.org/maven2/", "https://repo.maven.apache.org/maven2/",
paperMavenPublicUrl, paperMavenPublicUrl,
"https://s01.oss.sonatype.org/content/repositories/snapshots/", // todo Remove when updating adventure to release
) )
} }

View file

@ -5,9 +5,6 @@ mcVersion=1.20.3
# Set to true while updating Minecraft version # Set to true while updating Minecraft version
updatingMinecraft=false updatingMinecraft=false
# TODO remove with adventure included build
org.gradle.jvmargs=-Xmx1G
org.gradle.caching=true org.gradle.caching=true
org.gradle.parallel=true org.gradle.parallel=true
org.gradle.vfs.watch=false org.gradle.vfs.watch=false

View file

@ -1,6 +1,6 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
Date: Wed, 6 Dec 2023 13:38:10 -0700 Date: Wed, 6 Dec 2023 21:21:46 -0700
Subject: [PATCH] Temp adventure update Subject: [PATCH] Temp adventure update
@ -8,22 +8,25 @@ diff --git a/build.gradle.kts b/build.gradle.kts
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/build.gradle.kts --- a/build.gradle.kts
+++ b/build.gradle.kts +++ b/build.gradle.kts
@@ -0,0 +0,0 @@ val apiAndDocs: Configuration by configurations.creating { @@ -0,0 +0,0 @@ configurations.named(log4jPlugins.compileClasspathConfigurationName) {
configurations.api {
extendsFrom(apiAndDocs)
} }
val alsoShade: Configuration by configurations.creating
+val extraRuntime: Configuration by configurations.creating +val extraRuntime: Configuration by configurations.creating
+configurations.runtimeClasspath { +configurations.runtimeClasspath {
+ extendsFrom(extraRuntime) + extendsFrom(extraRuntime)
+} +}
+repositories {
+ maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
+ mavenContent {
+ snapshotsOnly()
+ includeGroup("net.kyori")
+ }
+ }
+}
+
dependencies { dependencies {
// api dependencies are listed transitively to API consumers
@@ -0,0 +0,0 @@ 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")) + extraRuntime(platform("net.kyori:adventure-bom:4.15.0-SNAPSHOT"))
apiAndDocs("net.kyori:adventure-api") implementation(project(":paper-api"))
apiAndDocs("net.kyori:adventure-text-minimessage") implementation(project(":paper-mojangapi"))
apiAndDocs("net.kyori:adventure-text-serializer-gson") // Paper start

View file

@ -7,11 +7,6 @@ pluginManagement {
} }
} }
// todo 1.20.3
if (file("adventure-temp").exists()) {
includeBuild("adventure-temp")
}
plugins { plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0" id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
} }