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 bea8db7 commit fe9353cCopy full SHA for fe9353c
build.gradle
@@ -218,6 +218,10 @@ publishing {
218
}
219
220
signing {
221
+ if (project.hasProperty("signingKey") && project.hasProperty("signingPassword")) {
222
+ logger.lifecycle("Signing with an in-memory key.")
223
+ useInMemoryPgpKeys(signingKey, signingPassword)
224
+ }
225
sign publishing.publications.maven
226
227
0 commit comments