Skip to content

Commit bd29fa2

Browse files
authored
Dependencies: use one testcontainers dependency version (#2828)
1 parent f83a7ef commit bd29fa2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle/libs.versions.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ jakarta-ws-rs-api = { module = "jakarta.ws.rs:jakarta.ws.rs-api", version = "4.0
7676
jandex = { module = "io.smallrye.jandex:jandex", version ="3.5.0" }
7777
javax-servlet-api = { module = "javax.servlet:javax.servlet-api", version = "4.0.1" }
7878
junit-bom = { module = "org.junit:junit-bom", version = "5.14.0" }
79-
localstack = { module = "org.testcontainers:localstack", version = "1.21.3" }
8079
keycloak-admin-client = { module = "org.keycloak:keycloak-admin-client", version = "26.0.7" }
8180
jcstress-core = { module = "org.openjdk.jcstress:jcstress-core", version = "0.16" }
8281
jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" }

runtime/service/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ dependencies {
133133

134134
testImplementation("io.rest-assured:rest-assured")
135135

136-
testImplementation(libs.localstack)
136+
testImplementation(platform(libs.testcontainers.bom))
137+
testImplementation("org.testcontainers:testcontainers-localstack")
137138

138139
testImplementation(project(":polaris-runtime-test-common"))
139140
testImplementation(project(":polaris-container-spec-helper"))

0 commit comments

Comments
 (0)