From 3d6e98a9506d8439abb1c3dfbaaafcd42fd3eece Mon Sep 17 00:00:00 2001 From: Miles Ziemer Date: Wed, 10 Jan 2024 14:27:18 -0500 Subject: [PATCH] Add smoke test traits dep 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. --- codegen/sdk-codegen/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codegen/sdk-codegen/build.gradle.kts b/codegen/sdk-codegen/build.gradle.kts index eabc76fee48..27441506b1e 100644 --- a/codegen/sdk-codegen/build.gradle.kts +++ b/codegen/sdk-codegen/build.gradle.kts @@ -39,7 +39,9 @@ plugins { } dependencies { + val smithyVersion: String by project implementation(project(":smithy-aws-go-codegen")) + implementation("software.amazon.smithy:smithy-smoke-test-traits:$smithyVersion") } // This project doesn't produce a JAR.