kafka-sink-azure-kusto/pom.xml

240 строки
9.3 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>
2018-11-05 13:34:59 +03:00
<artifactId>kafka-sink-azure-kusto</artifactId>
<packaging>jar</packaging>
<description>A Kafka Connect plugin for Azure Data Explorer (Kusto) Database</description>
<version>3.0.9</version>
<properties>
2022-08-10 14:34:11 +03:00
<kafka.version>3.1.0</kafka.version>
<json.version>20220320</json.version>
2022-12-14 19:18:36 +03:00
<junit.version>5.9.0</junit.version>
2022-08-10 14:34:11 +03:00
<commonio.version>2.11.0</commonio.version>
2022-11-28 10:25:29 +03:00
<kusto-sdk.version>3.2.1</kusto-sdk.version>
<formatter.version>2.20.0</formatter.version>
<jackson-version>2.13.4.2</jackson-version>
2022-12-14 19:18:36 +03:00
<littleproxy.version>1.1.2</littleproxy.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
2018-11-05 13:34:59 +03:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2018-11-05 13:34:59 +03:00
<artifactId>maven-assembly-plugin</artifactId>
<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>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<inherited>true</inherited>
<configuration>
<source>8</source>
<target>8</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-surefire-plugin</artifactId>
<version>2.22.2</version>
</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>
</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>
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>
<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>
<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>
</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>
</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>
<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>
2022-12-14 19:18:36 +03:00
</dependency>
<dependency>
<groupId>org.littleshoot</groupId>
<artifactId>littleproxy</artifactId>
<version>${littleproxy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
2022-08-10 14:34:11 +03:00
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<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>
</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>
</dependency>
</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>