Skip to content

Commit

Permalink
Order publish tasks to run after signing
Browse files Browse the repository at this point in the history
  • Loading branch information
Aruziell committed May 25, 2024
1 parent 02f3aff commit 3ab6d8f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ subprojects {
apply(plugin = "org.jetbrains.dokka")
}

subprojects {
tasks.withType<AbstractPublishToMaven> {
mustRunAfter(tasks.withType<Sign>())
}
}

subprojects {
val dokkaJar = tasks.create<Jar>("dokkaJar") {
archiveClassifier.set("javadoc")
Expand Down

0 comments on commit 3ab6d8f

Please sign in to comment.