Skip to content

Commit 7650f7c

Browse files
committed
Fix duplicate signing of javadocJar and sourcesJar
1 parent 4e7eda5 commit 7650f7c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,13 @@ allprojects {
295295
}
296296
}
297297

298+
tasks.named("publishBasePublicationToMavenCentralStagingRepository") {
299+
mustRunAfter(tasks.named("signShadedPublication"))
300+
}
301+
tasks.named("publishShadedPublicationToMavenCentralStagingRepository") {
302+
mustRunAfter(tasks.named("signBasePublication"))
303+
}
304+
298305
/* ******************** checks ******************** */
299306

300307
allprojects {

0 commit comments

Comments
 (0)