adutra commented on code in PR #2343:
URL: https://github.com/apache/polaris/pull/2343#discussion_r2276183042
##########
runtime/test-common/build.gradle.kts:
##########
@@ -32,10 +32,21 @@ configurations.all {
}
dependencies {
+ implementation(project(":polaris-core"))
+ implementation(libs.jakarta.ws.rs.api)
implementation(enforcedPlatform(libs.quarkus.bom))
implementation("io.quarkus:quarkus-junit5")
+
implementation(platform(libs.testcontainers.bom))
implementation("org.testcontainers:testcontainers")
implementation("org.testcontainers:postgresql")
+
+ implementation(libs.testcontainers.keycloak) {
+ exclude(group = "org.keycloak", module = "keycloak-admin-client")
+ }
+ // Keycloak Admin Client brings RESTEasy Classic, which conflicts with
Quarkus RESTEasy Reactive;
+ // it must not be present during Quarkus augmentation otherwise Quarkus
tests won't start.
+ compileOnly(libs.keycloak.admin.client)
Review Comment:
I suggest to leave it this way for now and I'll investigate if shading is an
option.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]