Skip to content

Commit f120b99

Browse files
committed
chore(codegen): re-add tasks[smithyBuild].enabled to false
1 parent 5b21ee2 commit f120b99

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

codegen/generic-client-test-codegen/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ dependencies {
4545
// This project doesn't produce a JAR.
4646
tasks["jar"].enabled = false
4747

48+
// Run the SmithyBuild task manually since this project needs the built JAR
49+
// from smithy-aws-typescript-codegen.
50+
tasks["smithyBuild"].enabled = false
51+
4852
val buildSdk = tasks.register<SmithyBuildTask>("buildSdk") {
4953
models.set(files("model/"))
5054
smithyBuildConfigs.set(files("smithy-build.json"))

codegen/protocol-test-codegen/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ dependencies {
4545
// This project doesn't produce a JAR.
4646
tasks["jar"].enabled = false
4747

48+
// Run the SmithyBuild task manually since this project needs the built JAR
49+
// from smithy-aws-typescript-codegen.
50+
tasks["smithyBuild"].enabled = false
51+
4852
val buildSdk = tasks.register<SmithyBuildTask>("buildSdk") {
4953
models.set(files("model/"))
5054
smithyBuildConfigs.set(files("smithy-build.json"))

codegen/sdk-codegen/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ dependencies {
5454
// This project doesn't produce a JAR.
5555
tasks["jar"].enabled = false
5656

57+
// Run the SmithyBuild task manually since this project needs the built JAR
58+
// from smithy-aws-typescript-codegen.
59+
tasks["smithyBuild"].enabled = false
60+
5761
val buildSdk = tasks.register<SmithyBuildTask>("buildSdk") {
5862
models.set(files("model/"))
5963
smithyBuildConfigs.set(files("smithy-build.json"))

0 commit comments

Comments
 (0)