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 5149804 commit 81a2306Copy full SHA for 81a2306
build.gradle
@@ -199,6 +199,12 @@ publish.dependsOn checkReleasePreconditions
199
publish.dependsOn 'signStandaloneJarPublication'
200
publish.dependsOn 'signMavenJavaPublication'
201
202
+// FIXME: remove after https://github.com/gradle/gradle/issues/26091
203
+tasks.withType(AbstractPublishToMaven).configureEach {
204
+ def signingTasks = tasks.withType(Sign)
205
+ mustRunAfter(signingTasks)
206
+}
207
+
208
repositories {
209
mavenCentral()
210
mavenLocal()
0 commit comments