aglinxinyuan commented on code in PR #6209: URL: https://github.com/apache/texera/pull/6209#discussion_r3526628901
########## common/workflow-core/build.sbt: ########## @@ -157,6 +157,9 @@ dependencyOverrides ++= Seq( // Iceberg-related Dependencies ///////////////////////////////////////////////////////////////////////////// val excludeJersey = ExclusionRule(organization = "com.sun.jersey") +// Hadoop 3.3.2+ ships jersey-json via the com.github.pjfanning fork; its Jersey 1.x +// providers break Jersey 2 auto-discovery at startup, so exclude it as well. +val excludeJerseyJsonFork = ExclusionRule(organization = "com.github.pjfanning", name = "jersey-json") Review Comment: Good catch — those extra changes were an artifact of the branch being cut from a local main that still carried a duplicate of #6205 (the jersey-json exclusion), so GitHub picked a merge-base before it and folded that diff in. I've rebased onto current apache/main and dropped the duplicate — the PR is now just the two intended files (the `build.sbt` jackson-databind pin and the one-line `computing-unit-managing-service/LICENSE-binary` resync). -- 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]
