tet123/debezium-core/pom.xml

151 lines
5.2 KiB
XML
Raw Normal View History

<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>io.debezium</groupId>
<artifactId>debezium-parent</artifactId>
<version>2.6.0.Alpha1</version>
<relativePath>../debezium-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>debezium-core</artifactId>
<name>Debezium Core</name>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-transforms</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-json</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>
2019-11-20 08:55:00 +01:00
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
<!-- OpenTelemetry Integration -->
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
2022-01-11 09:09:09 +01:00
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
2021-03-16 10:22:00 +01:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-json</artifactId>
<scope>test</scope>
</dependency>
<!-- Used for unit testing with Kafka -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_${version.kafka.scala}</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<scope>test</scope>
2022-01-11 09:09:09 +01:00
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-avro-converter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-utils-converter</artifactId>
<scope>test</scope>
</dependency>
DBZ-4027 Make signalling channel configurable DBZ-4027 Add an Incremental snapshot test with kafka signaling DBZ-4027 Add an Incremental snapshot test with kafka signaling DBZ-4027 Add an Incremental snapshot test with kafka signaling DBZ-4027 Code style DBZ-4027 Make SignalPayload more generic and extensible DBZ-4027 Rename DatabaseSignalChannel to SourceSignalChannel DBZ-4027 Improve logging DBZ-4027 Moved SPI file definition to debezium-core DBZ-4027 Move SignalProcessor synchronization point to be processed only when a signal cdc event arrives. DBZ-4027 Add EventDispatcher constructor without signalProcessor for spanner connector DBZ-4027 Fix NPE DBZ-4027 Fix NPE DBZ-4027 Formatting DBZ-4027 Correctly manage signal on not supported connector DBZ-4027 Use the correct MongoDbOffset DBZ-4027 Correctly initialize offset for Oracle and SqlServer connectors DBZ-4027 Register SPI implementations DBZ-4027 Improve SignalProcessor instantiation DBZ-4027 Pass source info in case of SchemaChanges action DBZ-4027 Manage close event in a synchronous way DBZ-4027 Correctly init offset context also in case of snapshot mode 'never' DBZ-4027 Fix MySqlMetricsIT test DBZ-4027 Move KafkaSignalChannel to core DBZ-4027 Move KafkaSignalChannel to core DBZ-4027 Set pass offset context after initial snapshot to SignalProcessor DBZ-4027 Pass OffsetContext to signal processor DBZ-4027 Pass CommonConnectorConfig to SignalChannelReader init method DBZ-4027 Move Incremental snapshot window actions to dedicated package DBZ-4027 Align SignalsIT test with new code DBZ-4027 Fix SignalsIT test DBZ-4027 Fix SignalProcessor scheduling DBZ-4027 Moved DatabaseSignalChannel and SignalChannelReader to dedicated package DBZ-4027 Start SignalProcessor from ChangeEventSourceCoordinator DBZ-4027 Create SignalProcessor and renamed Signal to DatabaseSignalChannel DBZ-4027 Initial refactoring of signal feature
2023-03-31 12:28:39 +02:00
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<!-- Apply the properties set in the POM to the resource files -->
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
<includes>
<include>**/build.properties</include>
DBZ-4027 Make signalling channel configurable DBZ-4027 Add an Incremental snapshot test with kafka signaling DBZ-4027 Add an Incremental snapshot test with kafka signaling DBZ-4027 Add an Incremental snapshot test with kafka signaling DBZ-4027 Code style DBZ-4027 Make SignalPayload more generic and extensible DBZ-4027 Rename DatabaseSignalChannel to SourceSignalChannel DBZ-4027 Improve logging DBZ-4027 Moved SPI file definition to debezium-core DBZ-4027 Move SignalProcessor synchronization point to be processed only when a signal cdc event arrives. DBZ-4027 Add EventDispatcher constructor without signalProcessor for spanner connector DBZ-4027 Fix NPE DBZ-4027 Fix NPE DBZ-4027 Formatting DBZ-4027 Correctly manage signal on not supported connector DBZ-4027 Use the correct MongoDbOffset DBZ-4027 Correctly initialize offset for Oracle and SqlServer connectors DBZ-4027 Register SPI implementations DBZ-4027 Improve SignalProcessor instantiation DBZ-4027 Pass source info in case of SchemaChanges action DBZ-4027 Manage close event in a synchronous way DBZ-4027 Correctly init offset context also in case of snapshot mode 'never' DBZ-4027 Fix MySqlMetricsIT test DBZ-4027 Move KafkaSignalChannel to core DBZ-4027 Move KafkaSignalChannel to core DBZ-4027 Set pass offset context after initial snapshot to SignalProcessor DBZ-4027 Pass OffsetContext to signal processor DBZ-4027 Pass CommonConnectorConfig to SignalChannelReader init method DBZ-4027 Move Incremental snapshot window actions to dedicated package DBZ-4027 Align SignalsIT test with new code DBZ-4027 Fix SignalsIT test DBZ-4027 Fix SignalProcessor scheduling DBZ-4027 Moved DatabaseSignalChannel and SignalChannelReader to dedicated package DBZ-4027 Start SignalProcessor from ChangeEventSourceCoordinator DBZ-4027 Create SignalProcessor and renamed Signal to DatabaseSignalChannel DBZ-4027 Initial refactoring of signal feature
2023-03-31 12:28:39 +02:00
<include>**/*</include>
</includes>
</resource>
</resources>
2022-08-19 13:48:55 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>15</source>
<target>15</target>
</configuration>
</plugin>
</plugins>
</build>
</project>