Merge branch 'master' into Development

This commit is contained in:
Brian Fopiano 2022-08-16 13:05:54 -07:00 committed by GitHub
commit a0db94d84f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ repositories {
maven { url "https://maven.enginehub.org/repo/" }
mavenCentral()
mavenLocal()
maven { url "https://jitpack.io"}
maven { url "https://jitpack.io" }
}
/**
@ -300,7 +300,7 @@ def registerCustomOutputTask(name, path) {
from(new File(buildDir, "Iris-" + version + ".jar"))
into(file(path))
rename { String fileName ->
fileName.replace("Iris-" + version + ".jar", "Iris.jar")
fileName.replace("Iris-" + version + ".jar", "Iris-" + version + ".jar")
}
}
}
@ -317,7 +317,7 @@ def registerCustomOutputTaskUnix(name, path) {
from(new File(buildDir, "Iris-" + version + ".jar"))
into(file(path))
rename { String fileName ->
fileName.replace("Iris-" + version + ".jar", "Iris.jar")
fileName.replace("Iris-" + version + ".jar", "Iris-" + version + ".jar")
}
}
}