|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
jcenter()
|
|
|
|
|
maven {
|
|
|
|
|
name = "Fabric"
|
|
|
|
@ -35,6 +36,10 @@ minecraft {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
// fabric loader requires log4j
|
|
|
|
|
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8.1'
|
|
|
|
|
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.8.1'
|
|
|
|
|
|
|
|
|
|
//to change the versions see the gradle.properties file
|
|
|
|
|
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
|
|
|
|
|
|
|
|
|