Skip to content

Commit

Permalink
Extend publishXToMavenLocal explicit dependencies to all repo tasks
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Cook <ccook@ibm.com>
  • Loading branch information
ccook-ibm committed Jul 21, 2023
1 parent 78537a2 commit bf02de3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/lang-painless/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,10 @@ shadowJar {

tasks.validateNebulaPom.dependsOn tasks.generatePomFileForShadowPublication
tasks.validateShadowPom.dependsOn tasks.generatePomFileForNebulaPublication
tasks.publishNebulaPublicationToMavenLocal.dependsOn tasks.generatePomFileForShadowPublication
tasks.publishShadowPublicationToMavenLocal.dependsOn tasks.generatePomFileForNebulaPublication
tasks.findAll { it.name.startsWith "publishNebulaPublication" }
.each { it.dependsOn tasks.generatePomFileForShadowPublication }
tasks.findAll { it.name.startsWith "publishShadowPublication" }
.each { it.dependsOn tasks.generatePomFileForNebulaPublication }

tasks.named("dependencyLicenses").configure {
mapping from: /asm-.*/, to: 'asm'
Expand Down

0 comments on commit bf02de3

Please sign in to comment.