Skip to content

Commit

Permalink
Hotfix: Ensure sourcesJar depends on generateApiClientObject
Browse files Browse the repository at this point in the history
Added a dependency on generateApiClientObject for sourcesJar in build.gradle.kts. This change ensures that source tasks are properly ordered, preventing potential build issues.
  • Loading branch information
fscarponi committed Sep 13, 2024
1 parent 9617184 commit 4347589
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ tasks {
jvmSourcesJar{
dependsOn(generateApiClientObject)
}
sourcesJar{
dependsOn(generateApiClientObject)
}
withType<KotlinCompileCommon> {
dependsOn(generateApiClientObject)
}
Expand Down

0 comments on commit 4347589

Please sign in to comment.