File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -202,6 +202,22 @@ tasks.register("generatePom") {
202202 dependsOn(" generatePomFileForAarPublication" , " generatePomFileForJarReleasePublication" )
203203}
204204
205+ afterEvaluate {
206+ tasks.findByName(" publishAarPublicationToLocalMavenWithChecksumsRepository" )?.let {
207+ it.dependsOn(tasks.named(" signJarReleasePublication" ))
208+ }
209+ tasks.findByName(" publishJarReleasePublicationToLocalMavenWithChecksumsRepository" )?.let {
210+ it.dependsOn(tasks.named(" signAarPublication" ))
211+ }
212+ tasks.findByName(" publishAarPublicationToMavenLocal" )?.let {
213+ it.dependsOn(tasks.named(" signJarReleasePublication" ))
214+ }
215+ tasks.findByName(" publishJarReleasePublicationToMavenLocal" )?.let {
216+ it.dependsOn(tasks.named(" signAarPublication" ))
217+ }
218+ }
219+
220+
205221apply (from = " publish-artifact.gradle" )
206222var buildDir = project.layout.buildDirectory.get()
207223sonarqube {
You can’t perform that action at this time.
0 commit comments