Skip to content

Commit

Permalink
[flailing] this fixed a laptop task dependency complaint i can no lon…
Browse files Browse the repository at this point in the history
…ger reproduce, and does no harm if i leave it; maybe it'll fix a different jenkins issue
  • Loading branch information
jmartin-sul committed Nov 29, 2023
1 parent f38771d commit c511368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ task deploymentJarRelaxed(type: Jar) {
"deployVersion": "${deployVersion}",
"artifactVersionString": "${artifactVersionString}")
}
with jar
dependsOn(jar)
}

task deploymentJar(type: Jar) {
doFirst {
assert deployVersionMatchesGitTag(deployVersion, gitTag) :
"deployVersion must match current git tag (or invoke deploymentJarRelaxed instead). deployVersion=${deployVersion} gitTag=${gitTag}"
}
with deploymentJarRelaxed
dependsOn(deploymentJarRelaxed)
}

distributions {
Expand Down

0 comments on commit c511368

Please sign in to comment.