Implements @liach's suggested changes
This commit is contained in:
		
							parent
							
								
									ab94eaca6c
								
							
						
					
					
						commit
						a64ec7b731
					
				
							
								
								
									
										13
									
								
								build.gradle
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								build.gradle
									
									
									
									
									
								
							@ -10,6 +10,13 @@ archivesBaseName = project.archives_base_name
 | 
				
			|||||||
version = project.mod_version
 | 
					version = project.mod_version
 | 
				
			||||||
group = project.maven_group
 | 
					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 {
 | 
					dependencies {
 | 
				
			||||||
	// To change the versions see the gradle.properties file
 | 
						// To change the versions see the gradle.properties file
 | 
				
			||||||
	minecraft "com.mojang:minecraft:${project.minecraft_version}"
 | 
						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.
 | 
					    // 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…
	
		Reference in New Issue
	
	Block a user