Merged in clint-gpgpassword (pull request #541)

Due to updated GPG key that requires a passphrase a passphrase block has been added.
This commit is contained in:
Clinton Alexander 2016-11-24 18:24:46 +00:00
commit 7858a76542
3 changed files with 21 additions and 0 deletions

View File

@ -24,6 +24,13 @@ bintray {
name = 'cordformation'
userOrg = 'r3'
licenses = ['Apache-2.0']
version {
gpg {
sign = true
passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
}
}
}
}

View File

@ -31,6 +31,13 @@ bintray {
name = 'publish-utils'
userOrg = 'r3'
licenses = ['Apache-2.0']
version {
gpg {
sign = true
passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
}
}
}
}

View File

@ -22,6 +22,13 @@ bintray {
name = 'quasar-utils'
userOrg = 'r3'
licenses = ['Apache-2.0']
version {
gpg {
sign = true
passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
}
}
}
}