From c5cf2c82b46a8e6546db1c80e25227606b9a7d6c Mon Sep 17 00:00:00 2001 From: alexcrea Date: Mon, 12 Jan 2026 00:41:36 +0100 Subject: [PATCH] add dependencies --- .github/workflows/gradle.yml | 2 +- build.gradle.kts | 24 +++++++++++++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 8372114..2a75edb 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -117,4 +117,4 @@ jobs: RELEASE_CHANGELOG: ${{ github.event.release.body }} IS_GITHUB_PRERELEASE: ${{ github.event.release.prerelease }} HANGAR_API_TOKEN: ${{ secrets.HANGAR_API_TOKEN }} - run: ./gradlew publishAllPublicationsToHangar --stacktrace \ No newline at end of file + run: ./gradlew publishAllPublicationsToHangar --stacktrace diff --git a/build.gradle.kts b/build.gradle.kts index c97cd09..bfa463b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -379,7 +379,29 @@ hangarPublish { .map { it.trim() } platformVersions.set(versions) - //TODO dependencies + dependencies { + hangar("ProtocolLib") { + required.set(false) + } + url("Disenchantment", "https://modrinth.com/plugin/disenchantment") { + required.set(false) + } + url("ToolStats", "https://modrinth.com/plugin/toolstats") { + required.set(false) + } + url("HavenBags", "https://www.spigotmc.org/resources/havenbags-shulker-like-player-bound-bags-1-17-1-21-4.110420/") { + required.set(false) + } + url("EcoEnchants", "https://www.spigotmc.org/resources/ecoenchants-%E2%AD%95-250-enchantments-%E2%9C%85-create-custom-enchants-%E2%9C%A8-essentials-cmi-support.79573/") { + required.set(false) + } + hangar("EnchantsSquared") { + required.set(false) + } + url("ExcellentEnchants", "https://www.spigotmc.org/resources/excellentenchants-%E2%AD%90-75-vanilla-like-enchantments.61693/") { + required.set(false) + } + } } } }