Skip to content

Commit

Permalink
Fix validation-model and aws-protocol-tests builds (smithy-lang#1880)
Browse files Browse the repository at this point in the history
This commit updates the build task for a pair of packages that depend
on the SmithyBuildJar task. This change is needed after changes in
common sourcesJar task to include resource files in source jars, which
was conflicting with the output of the SmithyBuildJar task output.
  • Loading branch information
jvschneid authored and alextwoods committed Sep 15, 2023
1 parent 24c747f commit 7d0d74d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions smithy-aws-protocol-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ dependencies {
implementation project(":smithy-aws-traits")
api project(":smithy-validation-model")
}

tasks["sourcesJar"].dependsOn("smithyBuildJar")
2 changes: 2 additions & 0 deletions smithy-validation-model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ ext {
dependencies {
implementation project(path: ":smithy-cli", configuration: "shadow")
}

tasks["sourcesJar"].dependsOn("smithyBuildJar")

0 comments on commit 7d0d74d

Please sign in to comment.