Add xaeros-world-map and xaeros-minimap link dependencies

This commit is contained in:
Vftdan 2024-09-04 22:48:02 +02:00
parent 5f1c3ed318
commit d6f3a35191
1 changed files with 16 additions and 2 deletions

View File

@ -16,6 +16,17 @@ repositories {
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically. // Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html // See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories. // for more information about repositories.
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
} }
loom { loom {
@ -39,6 +50,9 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway. // Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 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 { processResources {