diff options
author | Jason Penilla <[email protected]> | 2023-11-25 16:03:07 -0800 |
---|---|---|
committer | Jason Penilla <[email protected]> | 2023-11-25 17:44:48 -0800 |
commit | e5e7c12af8feb1cebb7efca42b7121553537deb2 (patch) | |
tree | 86728880ab71594209ad3107a82f5fd017924cd6 /patches/api/0449-Version-Catalog-POC.patch | |
parent | ed753d34d20e0a837bce495df6a37da008b78cb9 (diff) | |
download | Paper-version-catalogs.tar.gz Paper-version-catalogs.zip |
Version Catalogs initial POCversion-catalogs
todo
- needs release build of multi-version-catalog
- need to go through the patches and migrate all the dependencies & versions
Diffstat (limited to 'patches/api/0449-Version-Catalog-POC.patch')
-rw-r--r-- | patches/api/0449-Version-Catalog-POC.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/patches/api/0449-Version-Catalog-POC.patch b/patches/api/0449-Version-Catalog-POC.patch new file mode 100644 index 0000000000..53422ef12f --- /dev/null +++ b/patches/api/0449-Version-Catalog-POC.patch @@ -0,0 +1,39 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Jason Penilla <[email protected]> +Date: Sat, 25 Nov 2023 16:01:27 -0800 +Subject: [PATCH] Version Catalog POC + + +diff --git a/build.gradle.kts b/build.gradle.kts +index e827ee211e3c65dc68ac5867fd8476639df63645..76153b68ef7a6cfbea5350229362d52122bf8c35 100644 +--- a/build.gradle.kts ++++ b/build.gradle.kts +@@ -11,7 +11,7 @@ java { + + val annotationsVersion = "24.0.1" + val bungeeCordChatVersion = "1.20-R0.1" +-val adventureVersion = "4.14.0" ++val adventureVersion = libs.versions.adventure.get() + val slf4jVersion = "1.8.0-beta4" + val log4jVersion = "2.17.1" + val apiAndDocs: Configuration by configurations.creating { +@@ -32,7 +32,7 @@ dependencies { + api("com.google.code.gson:gson:2.10.1") + api("net.md-5:bungeecord-chat:$bungeeCordChatVersion-deprecated+build.14") // Paper + api("org.yaml:snakeyaml:2.2") +- api("org.joml:joml:1.10.5") ++ api(libs.joml) + // Paper start + api("com.googlecode.json-simple:json-simple:1.1.1") { + isTransitive = false // includes junit +diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml +new file mode 100644 +index 0000000000000000000000000000000000000000..791bbc8d0d4b277a637c665b20a507e1d44f75f8 +--- /dev/null ++++ b/gradle/libs.versions.toml +@@ -0,0 +1,5 @@ ++[versions] ++adventure = "4.14.0" ++ ++[libraries] ++joml = "org.joml:joml:1.10.5" |