This is an automated email from the ASF dual-hosted git repository.
snazy 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 4034b28ab Testing: Let runtime-service tests use Quarkus via
`enforcedPlatform()` (#2545)
4034b28ab is described below
commit 4034b28ab67e2a46ed342ce3de9188d7996f3e6b
Author: Robert Stupp <[email protected]>
AuthorDate: Mon Sep 15 10:58:08 2025 +0200
Testing: Let runtime-service tests use Quarkus via `enforcedPlatform()`
(#2545)
This change ensures that the tests in runtime-service use the same Quarkus
platform dependency versions as Polaris server does.
---
runtime/service/build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/runtime/service/build.gradle.kts b/runtime/service/build.gradle.kts
index b7c599dd4..5e5dc2638 100644
--- a/runtime/service/build.gradle.kts
+++ b/runtime/service/build.gradle.kts
@@ -123,7 +123,7 @@ dependencies {
testImplementation("software.amazon.awssdk:kms")
testImplementation("software.amazon.awssdk:dynamodb")
- testImplementation(platform(libs.quarkus.bom))
+ testImplementation(enforcedPlatform(libs.quarkus.bom))
testImplementation("io.quarkus:quarkus-junit5")
testImplementation("io.quarkus:quarkus-junit5-mockito")
testImplementation("io.quarkus:quarkus-rest-client")