File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -200,4 +200,9 @@ publishing {
200200 useInMemoryPgpKeys(SIGNING_KEY_ID , SIGNING_KEY , SIGNING_PASSWORD )
201201 sign(publishing.publications)
202202 }
203+ }
204+
205+ // TODO: remove after https://youtrack.jetbrains.com/issue/KT-46466 is fixed
206+ project.tasks.withType(AbstractPublishToMaven ::class .java).configureEach {
207+ dependsOn(project.tasks.withType(Sign ::class .java))
203208}
Original file line number Diff line number Diff line change @@ -226,4 +226,9 @@ publishing {
226226 useInMemoryPgpKeys(SIGNING_KEY_ID , SIGNING_KEY , SIGNING_PASSWORD )
227227 sign(publishing.publications)
228228 }
229+ }
230+
231+ // TODO: remove after https://youtrack.jetbrains.com/issue/KT-46466 is fixed
232+ project.tasks.withType(AbstractPublishToMaven ::class .java).configureEach {
233+ dependsOn(project.tasks.withType(Sign ::class .java))
229234}
You can’t perform that action at this time.
0 commit comments