Skip to content

Commit bf6e4cb

Browse files
committed
remove non-local dependencies for E2E tests
1 parent 6f1b53e commit bf6e4cb

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

services/build.gradle.kts

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,8 @@ subprojects {
9090

9191
if (project.name == "s3") {
9292
dependencies {
93-
val services = project.parent?.subprojects
94-
95-
if (services?.any { it.name == "s3control" } == true) {
96-
implementation(project(":services:s3control"))
97-
} else {
98-
implementation("aws.sdk.kotlin:s3control:+")
99-
}
100-
101-
if (services?.any { it.name == "sts" } == true) {
102-
implementation(project(":services:sts"))
103-
} else {
104-
implementation("aws.sdk.kotlin:sts:+")
105-
}
93+
implementation(project(":services:s3control"))
94+
implementation(project(":services:sts"))
10695
implementation(libs.smithy.kotlin.aws.signing.crt)
10796
}
10897
}

0 commit comments

Comments
 (0)