Skip to content

Commit

Permalink
Enforce task ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Aug 13, 2024
1 parent deea719 commit 6c11a2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vgo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,15 @@ tasks {
}

val sourcesJar by creating(Jar::class) {
dependsOn(generateConstants)

archiveClassifier.set("sources")
from(sourceSets["main"].allSource)
}

val javadocJar by creating(Jar::class) {
dependsOn(generateConstants)

archiveClassifier.set("javadoc")
from(this@tasks["javadoc"])
}
Expand Down

0 comments on commit 6c11a2b

Please sign in to comment.