Fixed some stuff
This commit is contained in:
parent
40e9f2eece
commit
884cbeae73
12
build.gradle
12
build.gradle
|
|
@ -24,7 +24,7 @@ compileJava {
|
||||||
}
|
}
|
||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
version = "1.12.2-14.23.5.2816"
|
version = "1.12.2-14.23.5.2847"
|
||||||
runDir = "run"
|
runDir = "run"
|
||||||
|
|
||||||
mappings = "snapshot_20171003"
|
mappings = "snapshot_20171003"
|
||||||
|
|
@ -73,16 +73,16 @@ task signJar(type: SignJar, dependsOn: reobfJar) {
|
||||||
|
|
||||||
// Skips if the keyStore property is missing.
|
// Skips if the keyStore property is missing.
|
||||||
onlyIf {
|
onlyIf {
|
||||||
project.hasProperty('keyStore')
|
project.hasProperty('modkeyStore')
|
||||||
}
|
}
|
||||||
|
|
||||||
// findProperty allows us to reference the property without it existing.
|
// findProperty allows us to reference the property without it existing.
|
||||||
// Using project.propName would cause the script to fail validation if
|
// Using project.propName would cause the script to fail validation if
|
||||||
// the property did not exist.
|
// the property did not exist.
|
||||||
keyStore = project.findProperty('keyStore')
|
keyStore = project.findProperty('modkeyStore')
|
||||||
alias = project.findProperty('keyStoreAlias')
|
alias = project.findProperty('modkeyStoreAlias')
|
||||||
storePass = project.findProperty('keyStorePass')
|
storePass = project.findProperty('modkeyStorePass')
|
||||||
keyPass = project.findProperty('keyStoreKeyPass')
|
keyPass = project.findProperty('modkeyStoreKeyPass')
|
||||||
inputFile = jar.archivePath
|
inputFile = jar.archivePath
|
||||||
outputFile = jar.archivePath
|
outputFile = jar.archivePath
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user