dimas-b commented on code in PR #2343: URL: https://github.com/apache/polaris/pull/2343#discussion_r2277754221
########## 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: shading is too much for this case :) I'd go with a custom running... not ok "as is" for now -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org