Apply signing plugin

This commit is contained in:
Rob Winch 2020-02-05 22:04:57 -06:00
parent 8facc74da2
commit 93557505c0

View File

@ -2,6 +2,7 @@ def isSnapshot = version?.matches(/^.*[.-]BUILD-SNAPSHOT$/)
def isRelease = !isSnapshot
if(project.hasProperty("signing.keyId") && isRelease) {
apply plugin: "signing"
sign(project)
}