Skip to content

Commit 562530b

Browse files
authored
Merge pull request #3 from makammoun/fix-jackson-dependency
force version of jackson-mapper-asl transitive dep to 1.9.13
2 parents 49df9f3 + 50e6af3 commit 562530b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Documentation for this connector can be found [here](http://docs.confluent.io/cu
88
# Criteo fork changes
99

1010
- Disable all hive related test raising a `NoClassDefFound Could not initialize class org.apache.hadoop.hive.ql.exec.Utilities`. Related issue (https://github.com/criteo-forks/kafka-connect-hdfs/issues/1). To be fixed if we plan to use hive module (not the case currently).
11+
- Force jackson-mapper-asl transitive dependency to 1.9.13
1112

1213
# Development
1314

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,13 @@
396396
<artifactId>kafka-connect-storage-common-avatica-shaded</artifactId>
397397
<version>${kafka.connect.storage.common.version}</version>
398398
</dependency>
399+
<!-- Explicitly add the public version of jackson-mapper-asl to override missing custom version -->
400+
<dependency>
401+
<groupId>org.codehaus.jackson</groupId>
402+
<artifactId>jackson-mapper-asl</artifactId>
403+
<version>1.9.13</version>
404+
<scope>compile</scope>
405+
</dependency>
399406
<dependency>
400407
<groupId>com.google.guava</groupId>
401408
<artifactId>guava</artifactId>

0 commit comments

Comments
 (0)