eric-maynard commented on code in PR #1431: URL: https://github.com/apache/polaris/pull/1431#discussion_r2058881149
########## gradle/libs.versions.toml: ########## @@ -73,6 +73,7 @@ javax-servlet-api = { module = "javax.servlet:javax.servlet-api", version = "4.0 junit-bom = { module = "org.junit:junit-bom", version = "5.12.2" } logback-classic = { module = "ch.qos.logback:logback-classic", version = "1.5.18" } micrometer-bom = { module = "io.micrometer:micrometer-bom", version = "1.14.6" } +microprofile-fault-tolerance-api = { module = "org.eclipse.microprofile.fault-tolerance:microprofile-fault-tolerance-api", version = "4.1.1" } Review Comment: Should we instead rely on the Quarkus BOM for this to prevent conflict? i.e. we would import it as: ``` dependencies { implementation(enforcedPlatform(libs.quarkus.bom)) implementation("org.eclipse.microprofile.fault-tolerance:microprofile-fault-tolerance-api") } ``` -- 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