Copilot commented on code in PR #6209: URL: https://github.com/apache/texera/pull/6209#discussion_r3526597878
########## 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: The PR description says this change “mirrors file-service / workflow-compiling-service exactly” and that only one line drifted in `computing-unit-managing-service/LICENSE-binary`, but this PR also updates `common/workflow-core/build.sbt` (new Hadoop jersey-json exclusion), `amber/build.sbt`, and multiple other `LICENSE-binary*` files. Please update the PR title/description (or split into a separate PR) so reviewers can clearly track the additional dependency/licensing changes. -- 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]
