2018-09-02 18:00:41 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2022-09-07 13:11:09 +03:00
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2018-09-02 18:00:41 +03:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.microsoft.azure</groupId>
|
2018-11-05 13:34:59 +03:00
|
|
|
<artifactId>kafka-sink-azure-kusto</artifactId>
|
2018-09-02 18:00:41 +03:00
|
|
|
<packaging>jar</packaging>
|
2020-09-02 20:02:13 +03:00
|
|
|
<description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description>
|
2022-12-06 16:52:50 +03:00
|
|
|
<version>3.0.7</version>
|
2020-08-13 17:52:42 +03:00
|
|
|
<properties>
|
2022-08-10 14:34:11 +03:00
|
|
|
<kafka.version>3.1.0</kafka.version>
|
|
|
|
<json.version>20220320</json.version>
|
|
|
|
<junit.version>5.8.2</junit.version>
|
|
|
|
<commonio.version>2.11.0</commonio.version>
|
2022-11-28 10:25:29 +03:00
|
|
|
<kusto-sdk.version>3.2.1</kusto-sdk.version>
|
2022-09-07 13:11:09 +03:00
|
|
|
<formatter.version>2.20.0</formatter.version>
|
2022-12-06 16:07:31 +03:00
|
|
|
<jackson-version>2.13.4.2</jackson-version>
|
2020-08-13 17:52:42 +03:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2018-09-02 18:00:41 +03:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2018-11-05 13:34:59 +03:00
|
|
|
<plugin>
|
2020-08-13 17:52:42 +03:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-11-05 13:34:59 +03:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2020-08-13 17:52:42 +03:00
|
|
|
<version>3.2.0</version>
|
2021-07-25 16:40:20 +03:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
|
<phase>package</phase> <!-- bind to the packaging phase -->
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2020-08-17 13:26:41 +03:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>fully.qualified.MainClass</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
2018-11-05 13:34:59 +03:00
|
|
|
</plugin>
|
2018-09-02 18:00:41 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-08-13 17:52:42 +03:00
|
|
|
<version>3.5.1</version>
|
|
|
|
<inherited>true</inherited>
|
2018-09-02 18:00:41 +03:00
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-08-13 17:52:42 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>io.confluent</groupId>
|
|
|
|
<artifactId>kafka-connect-maven-plugin</artifactId>
|
|
|
|
<version>0.11.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>kafka-connect</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-09-02 20:02:13 +03:00
|
|
|
<title>Kafka Connect Azure Data Explorer (Kusto) Sink Connector</title>
|
2020-08-13 17:52:42 +03:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<ownerUsername>microsoftcorporation</ownerUsername>
|
|
|
|
<ownerName>Microsoft Corporation</ownerName>
|
|
|
|
<componentTypes>
|
|
|
|
<componentType>sink</componentType>
|
|
|
|
</componentTypes>
|
|
|
|
<tags>
|
|
|
|
<tag>Azure</tag>
|
|
|
|
<tag>Kusto</tag>
|
2020-09-02 20:02:13 +03:00
|
|
|
<tag>Azure Data Explorer</tag>
|
2020-08-13 17:52:42 +03:00
|
|
|
<tag>Database</tag>
|
2020-09-02 20:02:13 +03:00
|
|
|
<tag>Sink</tag>
|
|
|
|
<tag>Kafka Connect</tag>
|
2020-08-13 17:52:42 +03:00
|
|
|
</tags>
|
|
|
|
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
|
2020-09-02 20:02:13 +03:00
|
|
|
<supportProviderName>Microsoft</supportProviderName>
|
|
|
|
<supportUrl>https://github.com/Azure/kafka-sink-azure-kusto/issues</supportUrl>
|
2020-08-13 17:52:42 +03:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2020-01-26 18:25:50 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2020-10-27 02:03:41 +03:00
|
|
|
<version>2.22.2</version>
|
2020-01-26 18:25:50 +03:00
|
|
|
</plugin>
|
2022-09-07 13:11:09 +03:00
|
|
|
<plugin>
|
|
|
|
<groupId>net.revelc.code.formatter</groupId>
|
|
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
|
|
<version>${formatter.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<configFile>${project.basedir}/formatter.xml</configFile>
|
|
|
|
<encoding>UTF-8</encoding>
|
2022-09-14 07:30:59 +03:00
|
|
|
<lineEnding>KEEP</lineEnding>
|
2022-09-07 13:11:09 +03:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-09-02 18:00:41 +03:00
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
2020-09-02 20:02:13 +03:00
|
|
|
<name>Kafka Connect Azure Data Explorer (Kusto) Sink</name>
|
2018-09-02 18:00:41 +03:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT License (MIT)</name>
|
|
|
|
<url>http://opensource.org/licenses/MIT</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<scm>
|
2020-09-02 20:02:13 +03:00
|
|
|
<url>https://github.com/Azure/kafka-sink-azure-kusto</url>
|
|
|
|
<connection>scm:git://github.com/Azure/kafka-sink-azure-kusto.git</connection>
|
2018-09-02 18:00:41 +03:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>microsoft</id>
|
|
|
|
<name>Microsoft</name>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<dependencies>
|
2018-11-05 13:34:59 +03:00
|
|
|
<dependency>
|
2019-10-24 12:57:04 +03:00
|
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
|
|
<artifactId>kusto-data</artifactId>
|
2019-12-24 14:41:15 +03:00
|
|
|
<version>${kusto-sdk.version}</version>
|
2022-08-11 14:20:45 +03:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</exclusion>
|
2022-12-06 16:07:31 +03:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.woodstox</groupId>
|
|
|
|
<artifactId>woodstox-core</artifactId>
|
|
|
|
</exclusion>
|
2022-08-11 14:20:45 +03:00
|
|
|
</exclusions>
|
2019-10-24 12:57:04 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
|
|
<artifactId>kusto-ingest</artifactId>
|
2019-12-24 14:41:15 +03:00
|
|
|
<version>${kusto-sdk.version}</version>
|
2022-08-10 14:34:11 +03:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson-version}</version>
|
|
|
|
<scope>compile</scope>
|
2018-11-05 13:34:59 +03:00
|
|
|
</dependency>
|
2018-09-02 18:00:41 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2021-06-05 20:41:06 +03:00
|
|
|
<version>4.5.13</version>
|
2018-09-02 18:00:41 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>connect-api</artifactId>
|
|
|
|
<version>${kafka.version}</version>
|
2020-07-10 10:50:25 +03:00
|
|
|
<scope>provided</scope>
|
2020-06-19 19:09:19 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>connect-json</artifactId>
|
|
|
|
<version>${kafka.version}</version>
|
2020-07-10 10:50:25 +03:00
|
|
|
<scope>provided</scope>
|
2018-09-02 18:00:41 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>${json.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commonio.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-10-27 02:03:41 +03:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2020-10-14 00:00:42 +03:00
|
|
|
<version>${junit.version}</version>
|
2018-09-02 18:00:41 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
2020-10-27 02:03:41 +03:00
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
2018-09-02 18:00:41 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-01-26 18:25:50 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
2022-08-10 14:34:11 +03:00
|
|
|
<version>1.10.19</version>
|
2020-01-26 18:25:50 +03:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-19 19:09:19 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.confluent</groupId>
|
|
|
|
<artifactId>kafka-connect-avro-converter</artifactId>
|
2022-06-06 14:19:22 +03:00
|
|
|
<version>7.1.1</version>
|
2020-07-10 10:50:25 +03:00
|
|
|
<scope>provided</scope>
|
2020-06-19 19:09:19 +03:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>connect-runtime</artifactId>
|
2020-06-21 13:12:40 +03:00
|
|
|
<version>5.3.0-ccs</version>
|
2020-07-10 10:50:25 +03:00
|
|
|
<scope>provided</scope>
|
2020-06-19 19:09:19 +03:00
|
|
|
</dependency>
|
2018-09-02 18:00:41 +03:00
|
|
|
</dependencies>
|
2018-11-05 13:34:59 +03:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2020-07-08 17:28:30 +03:00
|
|
|
<repository>
|
|
|
|
<id>confluent</id>
|
|
|
|
<url>https://packages.confluent.io/maven/</url>
|
|
|
|
</repository>
|
2018-11-05 13:34:59 +03:00
|
|
|
</repositories>
|
2019-12-25 13:36:53 +03:00
|
|
|
</project>
|