Skip to content

Commit 3e4a0b6

Browse files
committed
fix: scope down dependency
1 parent 629a7f3 commit 3e4a0b6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

services/build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ subprojects {
7575
implementation(libraries.kotlin.test.junit5)
7676
implementation(project(":tests:e2e-test-util"))
7777
implementation(libraries.slf4j.simple)
78-
implementation(libraries.smithy.kotlin.http.test)
7978
}
8079
}
8180

@@ -103,6 +102,12 @@ subprojects {
103102
}
104103
}
105104

105+
if (project.name == "route53") {
106+
dependencies {
107+
implementation(libraries.smithy.kotlin.http.test) // needed for URI E2E tests
108+
}
109+
}
110+
106111
// Run the tests with the classpath containing the compile dependencies (including 'main'),
107112
// runtime dependencies, and the outputs of this compilation:
108113
classpath = compileDependencyFiles + runtimeDependencyFiles + output.allOutputs

0 commit comments

Comments
 (0)