Skip to content

Commit 6d0dd46

Browse files
authored
chore: add smoke test traits dep (#5664)
Adds a dependency on smithy-smoke-test-traits in the sdk code gen package so aws service models that use the smokeTests trait won't fail to build because of unknown traits. Generated a client with a smoke test and confirmed there was no diff. Adding the dependency in the code gen package since it's the models that need the dependency, not the code generator. When smoke tests are implemented in the generator, we can add the dep there.
1 parent 59ff8e1 commit 6d0dd46

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

codegen/sdk-codegen/build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ plugins {
4343
}
4444

4545
dependencies {
46+
val smithyVersion: String by project
4647
implementation(project(":smithy-aws-typescript-codegen"))
48+
implementation("software.amazon.smithy:smithy-smoke-test-traits:$smithyVersion")
4749
}
4850

4951
// This project doesn't produce a JAR.

0 commit comments

Comments
 (0)