Fix cdc logging classpath issue

- Exclude a slf4j-log4j12 dependency inherited by slf4j-log4j12 that clashes with the spring boot logging.
This commit is contained in:
Christian Tzolov
2021-02-01 10:41:32 +01:00
parent 4f5405b2e8
commit dd9a2f709d

View File

@@ -28,6 +28,12 @@
<groupId>io.debezium</groupId>
<artifactId>debezium-embedded</artifactId>
<version>${version.debezium}</version>
<exclusions>
<exclusion>
<artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>