flyrain commented on code in PR #5783: URL: https://github.com/apache/iceberg/pull/5783#discussion_r1008594453
########## spark/v3.3/build.gradle: ########## @@ -27,6 +27,16 @@ def sparkProjects = [ project(":iceberg-spark:iceberg-spark-runtime-${sparkMajorVersion}_${scalaVersion}"), ] +configure(sparkProjects) { + configurations { + all { + resolutionStrategy { + force 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2' + } + } + } +} Review Comment: Thanks for the fix. The issue is that jackson-databind 2.13.4.1 depends on the non-existed lib, jackson-bom:2.13.4.1. I guess jackson team fixed that with jackson-databind 2.13.4.2 -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org