You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ni...@apache.org on 2022/12/05 14:37:52 UTC

[ignite-extensions] branch master updated: IGNITE-18318 exclude jackson-databind transitive dependency CDC&Kafka modules (#195)

This is an automated email from the ASF dual-hosted git repository.

nizhikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git


The following commit(s) were added to refs/heads/master by this push:
     new 6bbe2946 IGNITE-18318 exclude jackson-databind transitive dependency CDC&Kafka modules (#195)
6bbe2946 is described below

commit 6bbe2946b08f441d228d6ae571a5fb44866be06a
Author: nao <56...@users.noreply.github.com>
AuthorDate: Mon Dec 5 17:37:46 2022 +0300

    IGNITE-18318 exclude jackson-databind transitive dependency CDC&Kafka modules (#195)
    
    Co-authored-by: AONikolaev <ao...@sberbank.ru>
---
 modules/cdc-ext/pom.xml   | 12 ++++++++++++
 modules/kafka-ext/pom.xml | 12 ++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/modules/cdc-ext/pom.xml b/modules/cdc-ext/pom.xml
index ad44c8f7..b4690566 100644
--- a/modules/cdc-ext/pom.xml
+++ b/modules/cdc-ext/pom.xml
@@ -70,6 +70,12 @@
             <scope>test</scope>
         </dependency>
 
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-databind</artifactId>
+            <version>${jackson.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.kafka</groupId>
             <artifactId>kafka_2.12</artifactId>
@@ -89,6 +95,12 @@
             <version>${kafka.version}</version>
             <classifier>test</classifier>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>jackson-databind</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/modules/kafka-ext/pom.xml b/modules/kafka-ext/pom.xml
index 9ad95b4e..6de785f3 100644
--- a/modules/kafka-ext/pom.xml
+++ b/modules/kafka-ext/pom.xml
@@ -49,6 +49,12 @@
             <scope>provided</scope>
         </dependency>
 
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-databind</artifactId>
+            <version>${jackson.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.kafka</groupId>
             <artifactId>kafka-clients</artifactId>
@@ -62,6 +68,12 @@
             <artifactId>kafka_2.11</artifactId>
             <version>${kafka.version}</version>
             <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>jackson-databind</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>