Compare commits

...

1 Commits

Author SHA1 Message Date
Alexander Brandes
8589fe90c6 Introduce 'skip.signing' property
Signed-off-by: Alexander Brandes <mc.cache@web.de>
2024-04-14 21:23:32 +02:00

View File

@@ -118,7 +118,7 @@ subprojects {
}
signing {
if (!version.toString().endsWith("-SNAPSHOT")) {
if (!project.hasProperty("skip.signing") && !version.toString().endsWith("-SNAPSHOT")) {
val signingKey: String? by project
val signingPassword: String? by project
useInMemoryPgpKeys(signingKey, signingPassword)