diff --git a/publish.gradle b/publish.gradle index 788128f..c6658ea 100644 --- a/publish.gradle +++ b/publish.gradle @@ -70,4 +70,10 @@ if (project.hasProperty("signing.gnupg.keyName")) { sign publishing.publications } -} \ No newline at end of file + + task signAll { + tasks.withType(Sign).forEach { + dependsOn(it) + } + } +}