From a64ec7b7315350c526dd7aa4dd8aa8e071618077 Mon Sep 17 00:00:00 2001 From: YTG123 <54103478+YTG1234@users.noreply.github.com> Date: Sun, 7 Feb 2021 15:34:58 +0200 Subject: [PATCH] Implements @liach's suggested changes --- build.gradle | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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. + } }