diff --git a/build.gradle b/build.gradle index c52da48..655a998 100644 --- a/build.gradle +++ b/build.gradle @@ -13,12 +13,15 @@ targetCompatibility = 1.8 group = 'net.fabricmc' archivesBaseName = project.name -version = '0.2.7-SNAPSHOT' +version = '0.4' def build = "local" def ENV = System.getenv() if (ENV.BUILD_NUMBER) { build = "jenkins #${ENV.BUILD_NUMBER}" + version = version + "." + ENV.BUILD_NUMBER +} else { + version = version + ".local" } repositories { @@ -39,12 +42,12 @@ dependencies { implementation ('com.google.guava:guava:28.0-jre') // game handling utils - implementation ('net.fabricmc:stitch:0.4.3.71') { + implementation ('net.fabricmc:stitch:0.4.6+build.74') { exclude module: 'enigma' } // tinyfile management - implementation ('net.fabricmc:tiny-remapper:0.2.0.57') { + implementation ('net.fabricmc:tiny-remapper:0.2.2.66') { transitive = false } @@ -54,7 +57,7 @@ dependencies { // decompilers implementation ('net.fabricmc:procyon-fabric-compilertools:0.5.35.13') - implementation ('org.jetbrains:intellij-fernflower:1.2.0') + implementation ('org.jetbrains:intellij-fernflower:1.2.0.15') // source code remapping implementation ('org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT')