This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 6103199832 Spark 3.4: Force Jackson version to 2.14.2 (#8052)
6103199832 is described below
commit 6103199832a3d882f16d33be485b9be17e957e4e
Author: Eduard Tudenhoefner <[email protected]>
AuthorDate: Tue Jul 18 16:58:55 2023 +0200
Spark 3.4: Force Jackson version to 2.14.2 (#8052)
Spark 3.4.1 uses Jackson 2.14.2 according to
https://github.com/apache/spark/blob/v3.4.1/pom.xml#L186-L187, so we
should enforce the same version.
---
spark/v3.4/build.gradle | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/spark/v3.4/build.gradle b/spark/v3.4/build.gradle
index de1c8345dd..c6d9a08f76 100644
--- a/spark/v3.4/build.gradle
+++ b/spark/v3.4/build.gradle
@@ -31,9 +31,9 @@ configure(sparkProjects) {
configurations {
all {
resolutionStrategy {
- force
"com.fasterxml.jackson.module:jackson-module-scala_${scalaVersion}:2.13.4"
- force 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
- force 'com.fasterxml.jackson.core:jackson-core:2.13.4'
+ force
"com.fasterxml.jackson.module:jackson-module-scala_${scalaVersion}:2.14.2"
+ force 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
+ force 'com.fasterxml.jackson.core:jackson-core:2.14.2'
}
}
}