Browse Source

Apply signing plugin

Rob Winch 5 years ago
parent
commit
93557505c0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      gradle/ossrh.gradle

+ 1 - 0
gradle/ossrh.gradle

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