diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 769b091..4d0ab5c 100644 --- a/build.gradle +++ b/build.gradle @@ -2,16 +2,17 @@ // For those who want the bleeding edge buildscript { repositories { - jcenter() maven { - name = "forge" - url = "http://files.minecraftforge.net/maven" + name = "jitpack" + url = "https://jitpack.io/" } mavenCentral() + maven { url = "https://maven.minecraftforge.net/" } + maven { url = "https://repo.spongepowered.org/maven" } } dependencies { - classpath "com.github.jengelman.gradle.plugins:shadow:1.2.0" - classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT' + classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0' + classpath 'com.github.asbyth:ForgeGradle:6f53277' } } apply plugin: 'java' @@ -32,7 +33,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. } |