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 +}