aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle13
1 files changed, 10 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 90fe3c3d..7992cd8a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -39,15 +39,17 @@ dependencies {
implementation ('com.google.guava:guava:28.0-jre')
// game handling utils
- implementation ('net.fabricmc:stitch:0.2.1.60') {
+ implementation ('net.fabricmc:stitch:0.3.0.66') {
exclude module: 'enigma'
}
// tinyfile management
- implementation ('net.fabricmc:tiny-remapper:0.1.0.38') {
+ implementation ('net.fabricmc:tiny-remapper:0.2.0.52') {
transitive = false
}
- implementation ('net.fabricmc:fabric-mixin-compile-extensions:0.1.0.+')
+ implementation ('net.fabricmc:fabric-mixin-compile-extensions:0.2.0.3'){
+ exclude group :"net.fabricmc"
+ }
// decompilers
implementation ('net.fabricmc:procyon-fabric-compilertools:0.5.35.+')
@@ -132,3 +134,8 @@ publishing {
}
}
}
+configurations.all {
+ resolutionStrategy {
+ force 'org.codehaus.groovy:groovy-all:2.4.12'
+ }
+}