Skip to content

Commit dc8bc80

Browse files
committed
fix: 'mustRunAfter' is defined by 'configureEach' but used within 'subprojects'
1 parent 666c867 commit dc8bc80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gradle/publish.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ configurations {
111111
}
112112
}
113113

114-
tasks.withType(AbstractPublishToMaven).configureEach {
114+
tasks.withType(AbstractPublishToMaven).configureEach { task ->
115115
rootProject.subprojects {
116-
mustRunAfter tasks.matching { it instanceof VerificationTask }
116+
task.mustRunAfter tasks.matching { it instanceof VerificationTask }
117117
}
118118
}

0 commit comments

Comments
 (0)