From d6f3a35191ef0b958e440ad97982dd98397b2d8e Mon Sep 17 00:00:00 2001 From: Vftdan Date: Wed, 4 Sep 2024 22:48:02 +0200 Subject: [PATCH] Add xaeros-world-map and xaeros-minimap link dependencies --- build.gradle | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 180cfb8..fbdeb16 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,17 @@ repositories { // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. // See https://docs.gradle.org/current/userguide/declaring_repositories.html // for more information about repositories. + exclusiveContent { + forRepository { + maven { + name = "Modrinth" + url = "https://api.modrinth.com/maven" + } + } + filter { + includeGroup "maven.modrinth" + } + } } loom { @@ -38,7 +49,10 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - + + // Mods to link against + modImplementation "maven.modrinth:xaeros-world-map:1.39.0_Fabric_1.21" + modImplementation "maven.modrinth:xaeros-minimap:24.3.0_Fabric_1.21" } processResources { @@ -85,4 +99,4 @@ publishing { // The repositories here will be used for publishing your artifact, not for // retrieving dependencies. } -} \ No newline at end of file +}