aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 7 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 3ccc643..3247272 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,11 +5,15 @@ buildscript {
jcenter()
maven {
name = "forge"
- url = "http://files.minecraftforge.net/maven"
+ url = "https://maven.minecraftforge.net/"
+ }
+ maven {
+ name = "jitpack"
+ url = "https://jitpack.io/"
}
}
dependencies {
- classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
+ classpath "com.github.asbyth:ForgeGradle:6f53277"
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
@@ -39,7 +43,7 @@ minecraft {
// stable_# stables are built at the discretion of the MCP team.
// Use non-default mappings at your own risk. they may not allways work.
// simply re-run your setup task after changing the mappings to update your workspace.
- mappings = "stable_20"
+ mappings = "stable_22"
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
}