Ver código fonte

Apply signing plugin

Rob Winch 5 anos atrás
pai
commit
93557505c0
1 arquivos alterados com 1 adições e 0 exclusões
  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)
 }