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 7618f00 commit 8929766Copy full SHA for 8929766
publish.gradle
@@ -90,6 +90,13 @@ signing {
90
sign publishing.publications
91
}
92
93
+// Ensure that the publish tasks run after the sign tasks, otherwise gradle will complain
94
+tasks.matching { it.name.startsWith('publish') }.all { publishTask ->
95
+ tasks.matching { it.name.startsWith('sign') }.all { signTask ->
96
+ publishTask.mustRunAfter(signTask)
97
+ }
98
+}
99
+
100
javadoc {
101
options.addBooleanOption('html5', true)
102
0 commit comments