get back publishing signing

This commit is contained in:
InsanusMokrassar 2023-02-27 15:43:52 +06:00
parent 8215f9d2c6
commit 5a765ea1bc
1 changed files with 13 additions and 13 deletions

View File

@ -89,17 +89,17 @@ publishing {
}
if (project.hasProperty("signing.gnupg.keyName")) {
// apply plugin: 'signing'
//
// signing {
// useGpgCmd()
//
// sign publishing.publications
// }
//
// task signAll {
// tasks.withType(Sign).forEach {
// dependsOn(it)
// }
// }
apply plugin: 'signing'
signing {
useGpgCmd()
sign publishing.publications
}
task signAll {
tasks.withType(Sign).forEach {
dependsOn(it)
}
}
}