aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorTorui <44932079+ToruiDev@users.noreply.github.com>2022-05-07 11:16:49 +0200
committerGitHub <noreply@github.com>2022-05-07 11:16:49 +0200
commita60548fe27208faca660d379d15a48681f76c401 (patch)
tree2da0bcaae809f0bd166132ef7733a175b5b816d7 /build.gradle
parente3aedc3ffea344fbdda63aeb8a3fae8af9b1e681 (diff)
parenta92dd5ddcee161fd2ed9bf833fd71ab9a445ffc1 (diff)
downloadCOFL-a60548fe27208faca660d379d15a48681f76c401.tar.gz
COFL-a60548fe27208faca660d379d15a48681f76c401.tar.bz2
COFL-a60548fe27208faca660d379d15a48681f76c401.zip
Merge pull request #56 from HackedOS/main
Update gradle and forge
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle13
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.
}