After you ticket has been approved, perform the following steps to deploy to Maven.
gpg --gen-key
gpg -export-secret-keys YOUR-KEY-ID > secret-keys.gpg
note: the KEY-ID is the last 8 digits of the 40 digit string displayed when the key was created.
gpg --keyserver hkp://keyserver.ubuntu.com --send-keys YOUR-KEY-ID
Add the following to the gradle.properties
// GPG key information
signing.keyId=YOUR-KEY-ID
signing.password=YOUR-GPG-PASSWORD
signing.secretKeyRingFile=${HOME}/.gnupg/secring.gpg
// Sonatype key information
ossrhUsername=YOUR-OSSRH-USERNAME
ossrhPassword=YOUR-OSSRH-PASSWORD
gradle publish