diff --git a/build.gradle b/build.gradle index 59c5682..20025f0 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,10 @@ 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. + maven { + name 'Xander Maven' + url 'https://maven.isxander.dev/releases' + } } loom { @@ -35,7 +39,7 @@ dependencies { minecraft "com.mojang:minecraft:${project.minecraft_version}" mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" - + modImplementation 'dev.isxander:yet-another-config-lib:3.5.0+1.20.6-fabric' // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" @@ -85,4 +89,4 @@ publishing { // The repositories here will be used for publishing your artifact, not for // retrieving dependencies. } -} \ No newline at end of file +}