From 7daf6575ef0e967810a3a8a2e48252f998fa8b37 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Tue, 3 Dec 2024 15:49:45 -0700 Subject: [PATCH] Use YamlConfig from Paper repo --- .gitmodules | 3 --- YamlConfig | 1 - build.gradle | 7 ++++++- install_deps.sh | 5 ----- 4 files changed, 6 insertions(+), 10 deletions(-) delete mode 160000 YamlConfig diff --git a/.gitmodules b/.gitmodules index e3fe8b2b..32ac5cda 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ [submodule "ConcurrentUtil"] path = ConcurrentUtil url = https://github.com/Spottedleaf/ConcurrentUtil.git -[submodule "YamlConfig"] - path = YamlConfig - url = https://github.com/Spottedleaf/YamlConfig.git diff --git a/YamlConfig b/YamlConfig deleted file mode 160000 index 67552e77..00000000 --- a/YamlConfig +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 67552e770799734372260ffde9ea33aa10d291c8 diff --git a/build.gradle b/build.gradle index f9a984b0..81111037 100644 --- a/build.gradle +++ b/build.gradle @@ -70,7 +70,12 @@ allprojects { mavenLocal { mavenContent { includeModule("ca.spottedleaf", "concurrentutil") - includeModule("ca.spottedleaf", "yamlconfig") + } + } + maven { + url "https://repo.papermc.io/repository/maven-public/" + mavenContent { + includeGroup("ca.spottedleaf") } } maven { diff --git a/install_deps.sh b/install_deps.sh index 1a8459ed..4733acbe 100755 --- a/install_deps.sh +++ b/install_deps.sh @@ -5,8 +5,3 @@ git submodule update --init --recursive cd ConcurrentUtil mvn install - -cd .. - -cd YamlConfig -mvn install