From 2a11640afda43471202c19b9c57e0debbb379e3d Mon Sep 17 00:00:00 2001 From: Steven Yuan <33045051+syall@users.noreply.github.com> Date: Fri, 12 Apr 2024 12:55:13 -0700 Subject: [PATCH] chore(codegen): update Gradle build script dependencies (#5999) --- .../build.gradle.kts | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/codegen/smithy-aws-typescript-codegen/build.gradle.kts b/codegen/smithy-aws-typescript-codegen/build.gradle.kts index e31edae8e503..2705f6bcde55 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -35,15 +35,20 @@ buildscript { } dependencies { + // Smithy TypeScript + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.1") + + // Smithy generic dependencies + api("software.amazon.smithy:smithy-model:$smithyVersion") + api("software.amazon.smithy:smithy-protocol-test-traits:$smithyVersion") + api("software.amazon.smithy:smithy-rules-engine:$smithyVersion") + api("software.amazon.smithy:smithy-waiters:$smithyVersion") + + // Smithy AWS dependencies api("software.amazon.smithy:smithy-aws-cloudformation-traits:$smithyVersion") - api("software.amazon.smithy:smithy-aws-traits:$smithyVersion") api("software.amazon.smithy:smithy-aws-endpoints:$smithyVersion") - api("software.amazon.smithy:smithy-waiters:$smithyVersion") api("software.amazon.smithy:smithy-aws-iam-traits:$smithyVersion") - api("software.amazon.smithy:smithy-protocol-test-traits:$smithyVersion") - api("software.amazon.smithy:smithy-model:$smithyVersion") - api("software.amazon.smithy:smithy-rules-engine:$smithyVersion") - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.20.1") + api("software.amazon.smithy:smithy-aws-traits:$smithyVersion") } tasks.register("set-aws-sdk-versions") {