Update to new versioning scheme and update some deps
parent
3ce6fcd9a4
commit
93820f0d65
11
build.gradle
11
build.gradle
|
@ -13,12 +13,15 @@ targetCompatibility = 1.8
|
||||||
|
|
||||||
group = 'net.fabricmc'
|
group = 'net.fabricmc'
|
||||||
archivesBaseName = project.name
|
archivesBaseName = project.name
|
||||||
version = '0.2.7-SNAPSHOT'
|
version = '0.4'
|
||||||
|
|
||||||
def build = "local"
|
def build = "local"
|
||||||
def ENV = System.getenv()
|
def ENV = System.getenv()
|
||||||
if (ENV.BUILD_NUMBER) {
|
if (ENV.BUILD_NUMBER) {
|
||||||
build = "jenkins #${ENV.BUILD_NUMBER}"
|
build = "jenkins #${ENV.BUILD_NUMBER}"
|
||||||
|
version = version + "." + ENV.BUILD_NUMBER
|
||||||
|
} else {
|
||||||
|
version = version + ".local"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -39,12 +42,12 @@ dependencies {
|
||||||
implementation ('com.google.guava:guava:28.0-jre')
|
implementation ('com.google.guava:guava:28.0-jre')
|
||||||
|
|
||||||
// game handling utils
|
// game handling utils
|
||||||
implementation ('net.fabricmc:stitch:0.4.3.71') {
|
implementation ('net.fabricmc:stitch:0.4.6+build.74') {
|
||||||
exclude module: 'enigma'
|
exclude module: 'enigma'
|
||||||
}
|
}
|
||||||
|
|
||||||
// tinyfile management
|
// tinyfile management
|
||||||
implementation ('net.fabricmc:tiny-remapper:0.2.0.57') {
|
implementation ('net.fabricmc:tiny-remapper:0.2.2.66') {
|
||||||
transitive = false
|
transitive = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,7 +57,7 @@ dependencies {
|
||||||
|
|
||||||
// decompilers
|
// decompilers
|
||||||
implementation ('net.fabricmc:procyon-fabric-compilertools:0.5.35.13')
|
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
|
// source code remapping
|
||||||
implementation ('org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT')
|
implementation ('org.cadixdev:mercury:0.1.0.fabric-SNAPSHOT')
|
||||||
|
|
Loading…
Reference in New Issue