348 строки
14 KiB
XML
348 строки
14 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<artifactId>kafka-sink-azure-kusto</artifactId>
|
|
<packaging>jar</packaging>
|
|
<description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description>
|
|
<version>4.1.2</version>
|
|
<properties>
|
|
<avro.random.generator.version>0.4.1</avro.random.generator.version>
|
|
<awaitility.version>4.2.2</awaitility.version>
|
|
<az.core.version>1.51.0</az.core.version>
|
|
<az.identity.version>1.13.2</az.identity.version>
|
|
<az.netty.version>1.15.3</az.netty.version>
|
|
<commoncodec.version>1.17.1</commoncodec.version>
|
|
<commonio.version>2.16.1</commonio.version>
|
|
<dependency-check-maven.version>10.0.2</dependency-check-maven.version>
|
|
<formatter.version>2.16.0</formatter.version>
|
|
<impsort.version>1.6.2</impsort.version>
|
|
<java.release.version>1.8</java.release.version>
|
|
<jsonassert.version>1.5.3</jsonassert.version>
|
|
<junit.version>5.11.0</junit.version>
|
|
<kafka.connect.avro.converter.version>7.7.0</kafka.connect.avro.converter.version>
|
|
<kafka.version>3.8.0</kafka.version>
|
|
<kusto.sdk.version>5.2.0</kusto.sdk.version>
|
|
<mockito.version>4.11.0</mockito.version>
|
|
<mvn.assembly.plugin.version>3.2.0</mvn.assembly.plugin.version>
|
|
<mvn.compiler.plugin.version>3.11.0</mvn.compiler.plugin.version>
|
|
<mvn.failsafe.plugin.version>3.0.0</mvn.failsafe.plugin.version>
|
|
<mvn.surefire.plugin.version>3.0.0</mvn.surefire.plugin.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<testcontainer.version>1.20.1</testcontainer.version>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>${mvn.assembly.plugin.version}</version>
|
|
<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>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.microsoft.azure.kusto.kafka.connect.sink.KustoSinkConnector</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${mvn.compiler.plugin.version}</version>
|
|
<inherited>true</inherited>
|
|
<configuration>
|
|
<source>${java.release.version}</source>
|
|
<target>${java.release.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<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>
|
|
<title>Kafka Connect Azure Data Explorer (Kusto) Sink Connector</title>
|
|
<version>${project.version}</version>
|
|
<ownerUsername>microsoftcorporation</ownerUsername>
|
|
<ownerName>Microsoft Corporation</ownerName>
|
|
<componentTypes>
|
|
<componentType>sink</componentType>
|
|
</componentTypes>
|
|
<tags>
|
|
<tag>Azure</tag>
|
|
<tag>Kusto</tag>
|
|
<tag>Azure Data Explorer</tag>
|
|
<tag>Database</tag>
|
|
<tag>Sink</tag>
|
|
<tag>Kafka Connect</tag>
|
|
</tags>
|
|
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
|
|
<supportProviderName>Microsoft</supportProviderName>
|
|
<supportUrl>https://github.com/Azure/kafka-sink-azure-kusto/issues</supportUrl>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<version>${mvn.failsafe.plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*KustoSinkIT.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<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>
|
|
<lineEnding>KEEP</lineEnding>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- Makes it easier to have consist import order -->
|
|
<plugin>
|
|
<groupId>net.revelc.code</groupId>
|
|
<artifactId>impsort-maven-plugin</artifactId>
|
|
<version>${impsort.version}</version>
|
|
<dependencies>
|
|
<!-- Needed because of maven 3.9.0 backward compatibility issue,
|
|
See : https://github.com/eclipse/leshan/issues/1410 -->
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-utils</artifactId>
|
|
<version>3.5.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<groups>java.,javax.,org.,com.</groups>
|
|
<removeUnused>true</removeUnused>
|
|
<staticAfter>true</staticAfter>
|
|
<!-- <staticGroups>java.,javax.,org.w3c.,org.xml.,junit.</staticGroups> -->
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>sort-imports</id>
|
|
<goals>
|
|
<goal>sort</goal><!-- runs at process-sources phase by default -->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.owasp</groupId>
|
|
<artifactId>dependency-check-maven</artifactId>
|
|
<version>${dependency-check-maven.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
<name>Kafka Connect Azure Data Explorer (Kusto) Sink</name>
|
|
<licenses>
|
|
<license>
|
|
<name>The MIT License (MIT)</name>
|
|
<url>http://opensource.org/licenses/MIT</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>https://github.com/Azure/kafka-sink-azure-kusto</url>
|
|
<connection>scm:git://github.com/Azure/kafka-sink-azure-kusto.git</connection>
|
|
</scm>
|
|
<developers>
|
|
<developer>
|
|
<id>microsoft</id>
|
|
<name>Microsoft</name>
|
|
</developer>
|
|
</developers>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
<artifactId>kusto-data</artifactId>
|
|
<version>${kusto.sdk.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-identity</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-core</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-core-http-netty</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-identity</artifactId>
|
|
<version>${az.identity.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-core</artifactId>
|
|
<version>${az.core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-core-http-netty</artifactId>
|
|
<version>${az.netty.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.microsoft.azure.kusto</groupId>
|
|
<artifactId>kusto-ingest</artifactId>
|
|
<version>${kusto.sdk.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-identity</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-core</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.azure</groupId>
|
|
<artifactId>azure-core-http-netty</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>${commoncodec.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commonio.version}</version>
|
|
</dependency>
|
|
<!-- Provided scopes -->
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>connect-api</artifactId>
|
|
<version>${kafka.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>connect-json</artifactId>
|
|
<version>${kafka.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.confluent</groupId>
|
|
<artifactId>kafka-connect-avro-converter</artifactId>
|
|
<version>${kafka.connect.avro.converter.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>connect-runtime</artifactId>
|
|
<version>${kafka.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Test scopes -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.confluent.avro</groupId>
|
|
<artifactId>avro-random-generator</artifactId>
|
|
<version>${avro.random.generator.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.testcontainers</groupId>
|
|
<artifactId>testcontainers</artifactId>
|
|
<version>${testcontainer.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.testcontainers</groupId>
|
|
<artifactId>kafka</artifactId>
|
|
<version>${testcontainer.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>${mockito.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.awaitility</groupId>
|
|
<artifactId>awaitility</artifactId>
|
|
<version>${awaitility.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.skyscreamer</groupId>
|
|
<artifactId>jsonassert</artifactId>
|
|
<version>${jsonassert.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>jitpack</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>confluent</id>
|
|
<url>https://packages.confluent.io/maven/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>maven_central</id>
|
|
<name>Maven Central</name>
|
|
<url>https://repo.maven.apache.org/maven2/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|