Implements @liach's suggested changes

pull/81/head
YTG123 3 years ago committed by GitHub
parent ab94eaca6c
commit a64ec7b731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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.
}
}

Loading…
Cancel
Save