You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/04/14 10:43:22 UTC

[incubator-inlong] branch master updated: [INLONG-3699][Agent] Exclude mysql-connector-java (#3700)

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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 84c8722b1 [INLONG-3699][Agent] Exclude mysql-connector-java (#3700)
84c8722b1 is described below

commit 84c8722b1c1a627f0d88a92494f1ac65b5cbe023
Author: xueyingzhang <86...@users.noreply.github.com>
AuthorDate: Thu Apr 14 18:43:18 2022 +0800

    [INLONG-3699][Agent] Exclude mysql-connector-java (#3700)
---
 inlong-agent/agent-plugins/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/inlong-agent/agent-plugins/pom.xml b/inlong-agent/agent-plugins/pom.xml
index a95c83876..cba372826 100644
--- a/inlong-agent/agent-plugins/pom.xml
+++ b/inlong-agent/agent-plugins/pom.xml
@@ -72,6 +72,12 @@
         <dependency>
             <groupId>io.debezium</groupId>
             <artifactId>debezium-connector-mysql</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>mysql</groupId>
+                    <artifactId>mysql-connector-java</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.postgresql</groupId>