Skip to content

Commit

Permalink
👷 Add dependency between tasks to fix ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysoun committed Sep 3, 2024
1 parent a73b1e4 commit e1c0e1e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/proto/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ kotlin {
}
}

tasks.withType<Jar>().configureEach {
archiveBaseName.set("proto-stub")
tasks.withType<Jar> {
archiveBaseName = "proto-stub"
dependsOn(tasks.named("generateTestProto"))
}

tasks.withType<ProcessResources>().configureEach {
Expand Down

0 comments on commit e1c0e1e

Please sign in to comment.