This is an automated email from the ASF dual-hosted git repository.
yufei pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new bd29fa2d9 Dependencies: use one testcontainers dependency version
(#2828)
bd29fa2d9 is described below
commit bd29fa2d9ba14212e40f312cbd85f3a65381df95
Author: Robert Stupp <[email protected]>
AuthorDate: Fri Oct 17 01:16:41 2025 +0200
Dependencies: use one testcontainers dependency version (#2828)
---
gradle/libs.versions.toml | 1 -
runtime/service/build.gradle.kts | 3 ++-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 3ea6c3f8c..263bae1b4 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -76,7 +76,6 @@ jakarta-ws-rs-api = { module =
"jakarta.ws.rs:jakarta.ws.rs-api", version = "4.0
jandex = { module = "io.smallrye.jandex:jandex", version ="3.5.0" }
javax-servlet-api = { module = "javax.servlet:javax.servlet-api", version =
"4.0.1" }
junit-bom = { module = "org.junit:junit-bom", version = "5.14.0" }
-localstack = { module = "org.testcontainers:localstack", version = "1.21.3" }
keycloak-admin-client = { module = "org.keycloak:keycloak-admin-client",
version = "26.0.7" }
jcstress-core = { module = "org.openjdk.jcstress:jcstress-core", version =
"0.16" }
jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" }
diff --git a/runtime/service/build.gradle.kts b/runtime/service/build.gradle.kts
index 97a559f77..7b41c3d10 100644
--- a/runtime/service/build.gradle.kts
+++ b/runtime/service/build.gradle.kts
@@ -133,7 +133,8 @@ dependencies {
testImplementation("io.rest-assured:rest-assured")
- testImplementation(libs.localstack)
+ testImplementation(platform(libs.testcontainers.bom))
+ testImplementation("org.testcontainers:testcontainers-localstack")
testImplementation(project(":polaris-runtime-test-common"))
testImplementation(project(":polaris-container-spec-helper"))