We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec51014 commit 569448dCopy full SHA for 569448d
build.gradle
@@ -93,7 +93,10 @@ publishing {
93
}
94
95
signing {
96
- required { version != "NONE" }
+ def signingKeyId = "4ED1648B5E695E6A"
97
+ def signingKey = findProperty("signingKey") ?: "key"
98
+ def signingPassword = findProperty("signingPassword") ?: "pass"
99
+ useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
100
sign publishing.publications.mavenJava
101
102
0 commit comments