Skip to content

Commit

Permalink
添加插件之间的依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
wuychn committed May 13, 2023
1 parent 8750e59 commit f99be15
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,13 @@ forbiddenApisTest.ignoreFailures = true
validateNebulaPom.enabled = false
loggerUsageCheck.enabled = false

tasks.matching {it.path in [":publishNebulaPublicationToSnapshotsRepository"]}.all { task ->
tasks.matching {it.path in [":publishNebulaPublicationToReleaseRepository"]}.all { task ->
task.dependsOn 'generatePomFileForPluginZipPublication'
}
tasks.matching {it.path in [":publishNebulaPublicationToStagingRepository"]}.all { task ->
task.dependsOn 'generatePomFileForPluginZipPublication'
}
tasks.matching {it.path in [":publishNebulaPublicationToZipStagingRepository"]}.all { task ->
task.dependsOn 'generatePomFileForPluginZipPublication'
}

Expand Down

0 comments on commit f99be15

Please sign in to comment.