Skip to content

Commit

Permalink
Merge pull request #168 from blackducksoftware/ek-change-jar-signing
Browse files Browse the repository at this point in the history
  • Loading branch information
ekerwin authored May 8, 2020
2 parents 93c64e6 + 8b4c275 commit 491d337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ task signJar() {
dependsOn build
doLast {
exec {
commandLine 'jarsigner', '-tsa', 'http://timestamp.globalsign.com/scripts/timestamp.dll', '-storetype', 'pkcs12', '-storepass', "${System.env.JARSIGNER_KEYSTORE_PASS}", '-keystore', "${System.env.JARSIGNER_KEYSTORE_PATH}", "${createArtifactName()}", "${System.env.JARSIGNER_CERT_ALIAS}"
commandLine 'jarsigner', '-tsa', 'http://timestamp.globalsign.com/scripts/timestamp.dll', '-storetype', 'pkcs12', '-storepass', "${jarSigningKeystorePassword}", '-keystore', "${jarSigningKeystorePath}", "${createArtifactName()}", "${jarSigningCertificateAlias}"
}
}
}

0 comments on commit 491d337

Please sign in to comment.