diff --git a/Jenkinsfile b/Jenkinsfile index cf539c6..c6d9f45 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,4 +26,4 @@ pipeline { archive 'build/libs/**.jar' } } -} +} \ No newline at end of file diff --git a/build.gradle b/build.gradle index 49ab3f7..557944e 100644 --- a/build.gradle +++ b/build.gradle @@ -157,16 +157,16 @@ task signJar(type: SignJar, dependsOn: reobfJar) { // Skips if the keyStore property is missing. onlyIf { - project.hasProperty('keyStore') + project.hasProperty('modkeyStore') } // findProperty allows us to reference the property without it existing. // Using project.propName would cause the script to fail validation if // the property did not exist. - keyStore = project.findProperty('keyStore') - alias = project.findProperty('keyStoreAlias') - storePass = project.findProperty('keyStorePass') - keyPass = project.findProperty('keyStoreKeyPass') + keyStore = project.findProperty('modkeyStore') + alias = project.findProperty('modkeyStoreAlias') + storePass = project.findProperty('modkeyStorePass') + keyPass = project.findProperty('modkeyStoreKeyPass') inputFile = jar.archivePath outputFile = jar.archivePath }