Skip to content

Commit

Permalink
Update task dependency in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
lealobanov committed Jun 13, 2024
1 parent b1230f7 commit 30cad70
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions protobuf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ tasks.whenTaskAdded {
dependsOn(this@whenTaskAdded)
}
}
if (name == "generateMetadataFileForMavenPublication") {
tasks.named("generateMetadataFileForMavenPublication") {
dependsOn(tasks.findByName("kotlinSourcesJar"))
}
}
}

tasks {
Expand Down

0 comments on commit 30cad70

Please sign in to comment.