diff --git a/build.gradle b/build.gradle index e83d0cc..b898d8b 100644 --- a/build.gradle +++ b/build.gradle @@ -10,6 +10,13 @@ archivesBaseName = project.archives_base_name version = project.mod_version group = project.maven_group +repositories { + // Add repositories to retrive artifacts from in here. + // Loom adds the Fabric maven automatically so you don't + // have to. See https://docs.gradle.org/current/userguide/declaring_repositories.html + // for more information about repositories. +} + dependencies { // To change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}" @@ -75,4 +82,10 @@ publishing { } // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. + repositories { + // Add repositories to publish to here. + // Notice: This block does NOT have the same function as the block in line 13. + // The repositories here will be used for publishing your artifact, not for + // retirieving dependencies. + } }