We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
doLast {}
1 parent 07ab9a2 commit fa37df0Copy full SHA for fa37df0
buildSrc/src/main/kotlin/buildsrc/convention/maven-publish.gradle.kts
@@ -160,7 +160,7 @@ tasks.withType<AbstractPublishToMaven>().configureEach {
160
tasks.withType<AbstractPublishToMaven>().configureEach {
161
val publicationGAV = provider { publication?.run { "$group:$artifactId:$version" } }
162
inputs.property("publicationGAV", publicationGAV).optional(true)
163
- doFirst("log publication GAV") {
+ doLast("log publication GAV") {
164
if (publicationGAV.isPresent) {
165
logger.lifecycle("[task: ${path}] ${publicationGAV.get()}")
166
}
0 commit comments