We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 629a7f3 commit 3e4a0b6Copy full SHA for 3e4a0b6
services/build.gradle.kts
@@ -75,7 +75,6 @@ subprojects {
75
implementation(libraries.kotlin.test.junit5)
76
implementation(project(":tests:e2e-test-util"))
77
implementation(libraries.slf4j.simple)
78
- implementation(libraries.smithy.kotlin.http.test)
79
}
80
81
@@ -103,6 +102,12 @@ subprojects {
103
102
104
105
+ if (project.name == "route53") {
106
+ dependencies {
107
+ implementation(libraries.smithy.kotlin.http.test) // needed for URI E2E tests
108
+ }
109
110
+
111
// Run the tests with the classpath containing the compile dependencies (including 'main'),
112
// runtime dependencies, and the outputs of this compilation:
113
classpath = compileDependencyFiles + runtimeDependencyFiles + output.allOutputs
0 commit comments