azure-cosmos-kafka-connect
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.azure.cosmos.kafka</groupId> <artifactId>azure-cosmos-kafka-connect</artifactId> <version>2.5.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>azure-client-sdk-parent</artifactId> <groupId>com.azure</groupId> <version>1.7.0</version> <relativePath>../../parents/azure-client-sdk-parent/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.azure.cosmos.kafka</groupId> <artifactId>azure-cosmos-kafka-connect</artifactId> <name>Apache Kafka Connect connector for Azure Cosmos DB</name> <version>2.5.1</version> <description>This Package contains an Apache Kafka Connect source and sink connector for Azure Cosmos DB</description> <url>https://github.com/Azure/azure-sdk-for-java</url> <scm> <connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection> <url>scm:git:https://github.com/Azure/azure-sdk-for-java</url> </scm> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration> <groups>unit</groups> <includes> <include>%regex[.*]</include> </includes> <properties> <property> <name>surefire.testng.verbose</name> <value>2</value> </property> </properties> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <configuration> <rules> <bannedDependencies> <includes> <include>com.azure:*</include> <include>org.apache.kafka:connect-api:[3.6.0]</include> <include>com.jayway.jsonpath:json-path:[2.9.0]</include> <include>org.sourcelab:kafka-connect-client:[4.0.4]</include> <include>org.apache.maven.plugins:maven-antrun-plugin:[3.1.0]</include> </includes> </bannedDependencies> </rules> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>build-kafka</id> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.6.0</version> <executions> <execution> <id>shade</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>*:*:*:*</artifact> <excludes> <exclude>module-info.class</exclude> <exclude>META-INF/*.MF</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> <exclude>META-INF/license/LICENSE.aix-netbsd.txt</exclude> <exclude>META-INF/license/LICENSE.boringssl.txt</exclude> <exclude>META-INF/license/LICENSE.mvn-wrapper.txt</exclude> <exclude>META-INF/license/LICENSE.tomcat-native.txt</exclude> <exclude>META-INF.versions.9.module-info.class</exclude> </excludes> </filter> <filter> <artifact>io.micrometer:micrometer-core</artifact> <includes> <include>**</include> </includes> </filter> <filter> <artifact>io.micrometer:micrometer-observation</artifact> <includes> <include>**</include> </includes> </filter> </filters> <relocations> <relocation> <pattern>com.azure</pattern> <shadedPattern>${shadingPrefix}.com.azure</shadedPattern> <excludes> <exclude>com.azure.cosmos.kafka.**</exclude> </excludes> </relocation> <relocation> <pattern>io.netty</pattern> <shadedPattern>${shadingPrefixNetty}.io.netty</shadedPattern> </relocation> <relocation> <pattern>org.codehaus</pattern> <shadedPattern>${shadingPrefix}.org.codehaus</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml</pattern> <shadedPattern>${shadingPrefix}.com.fasterxml</shadedPattern> </relocation> <relocation> <pattern>com.ctc.wstx</pattern> <shadedPattern>${shadingPrefix}.com.ctc.wstx</shadedPattern> </relocation> <relocation> <pattern>com.codahale.metrics</pattern> <shadedPattern>${shadingPrefix}.com.codahale.metrics</shadedPattern> </relocation> <relocation> <pattern>com.thoughtworks.paranamer</pattern> <shadedPattern>${shadingPrefix}.com.thoughtworks.paranamer</shadedPattern> </relocation> <relocation> <pattern>org.HdrHistogram</pattern> <shadedPattern>${shadingPrefix}.org.HdrHistogram</shadedPattern> </relocation> <relocation> <pattern>reactor</pattern> <shadedPattern>${shadingPrefix}.reactor</shadedPattern> </relocation> <relocation> <pattern>com.jayway.jsonpath</pattern> <shadedPattern>${shadingPrefix}.com.jayway.jsonpath</shadedPattern> </relocation> </relocations> <artifactSet> <excludes> <exclude>org.slf4j</exclude> <exclude>io.confluent:*</exclude> <exclude>org.apache.kafka:*</exclude> </excludes> </artifactSet> <minimizeJar>true</minimizeJar> <transformers> <transformer /> <transformer> <addHeader>false</addHeader> </transformer> <transformer> <resource>META-INF/io.netty.versions.properties</resource> <ordinalKey>ordinal</ordinalKey> <alreadyMergedKey>already_merged</alreadyMergedKey> <defaultOrdinal>0</defaultOrdinal> <reverseOrder>false</reverseOrder> </transformer> <transformer /> <transformer> <resource>META-INF/NOTICE.md</resource> </transformer> <transformer> <resource>META-INF/LICENSE.md</resource> </transformer> </transformers> <shadeSourcesContent>true</shadeSourcesContent> <createDependencyReducedPom>true</createDependencyReducedPom> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>01-copy-readme-to-javadocTemp</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <echo>Deleting existing ${project.basedir}/javadocTemp</echo> <delete> <fileset /> </delete> <echo>Copying ${project.basedir}/README.md to ${project.basedir}/javadocTemp/README.md</echo> <copy /> </target> </configuration> </execution> <execution> <id>03-repack</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <unzip /> <move /> <move /> <move /> <move /> <move /> <move /> <move /> <move /> <zip /> <delete /> </target> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>unit</id> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.2</version> <configuration /> </plugin> </plugins> </build> <properties> <env>default</env> <test.groups>unit</test.groups> </properties> </profile> <profile> <id>kafka-emulator</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/resources/kafka-emulator-testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> </plugins> </build> <properties> <test.groups>kafka-emulator</test.groups> </properties> </profile> <profile> <id>kafka</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/resources/kafka-testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> </plugins> </build> <properties> <test.groups>kafka</test.groups> </properties> </profile> <profile> <id>kafka-integration</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/resources/kafka-integration-testng.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> </plugins> </build> <properties> <test.groups>kafka-integration</test.groups> </properties> </profile> </profiles> <repositories> <repository> <id>confluent</id> <name>Confluent</name> <url>https://packages.confluent.io/maven/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>connect-api</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-cosmos-test</artifactId> <version>1.0.0-beta.14</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.10.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>connect-runtime</artifactId> <version>3.6.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jackson-jaxrs-json-provider</artifactId> <groupId>com.fasterxml.jackson.jaxrs</groupId> </exclusion> <exclusion> <artifactId>connect-json</artifactId> <groupId>org.apache.kafka</groupId> </exclusion> <exclusion> <artifactId>connect-transforms</artifactId> <groupId>org.apache.kafka</groupId> </exclusion> <exclusion> <artifactId>reload4j</artifactId> <groupId>ch.qos.reload4j</groupId> </exclusion> <exclusion> <artifactId>jose4j</artifactId> <groupId>org.bitbucket.b_c</groupId> </exclusion> <exclusion> <artifactId>jersey-container-servlet</artifactId> <groupId>org.glassfish.jersey.containers</groupId> </exclusion> <exclusion> <artifactId>jersey-hk2</artifactId> <groupId>org.glassfish.jersey.inject</groupId> </exclusion> <exclusion> <artifactId>jaxb-api</artifactId> <groupId>javax.xml.bind</groupId> </exclusion> <exclusion> <artifactId>activation</artifactId> <groupId>javax.activation</groupId> </exclusion> <exclusion> <artifactId>jetty-server</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-servlet</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-servlets</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>jetty-client</artifactId> <groupId>org.eclipse.jetty</groupId> </exclusion> <exclusion> <artifactId>reflections</artifactId> <groupId>org.reflections</groupId> </exclusion> <exclusion> <artifactId>maven-artifact</artifactId> <groupId>org.apache.maven</groupId> </exclusion> <exclusion> <artifactId>swagger-annotations</artifactId> <groupId>io.swagger.core.v3</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.5.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>ant</artifactId> <groupId>org.apache.ant</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> <exclusion> <artifactId>jquery</artifactId> <groupId>org.webjars</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.22.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>2.17.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.17.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.17.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>objenesis</artifactId> <groupId>org.objenesis</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>1.17.5</version> <scope>test</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> <version>1.17.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>1.19.5</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>commons-compress</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>duct-tape</artifactId> <groupId>org.rnorth.duct-tape</groupId> </exclusion> <exclusion> <artifactId>docker-java-api</artifactId> <groupId>com.github.docker-java</groupId> </exclusion> <exclusion> <artifactId>docker-java-transport-zerodep</artifactId> <groupId>com.github.docker-java</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>kafka</artifactId> <version>1.19.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.sourcelab</groupId> <artifactId>kafka-connect-client</artifactId> <version>4.0.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>httpclient</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-avro-serializer</artifactId> <version>7.6.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>kafka-schema-serializer</artifactId> <groupId>io.confluent</groupId> </exclusion> <exclusion> <artifactId>kafka-schema-registry-client</artifactId> <groupId>io.confluent</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>logredactor</artifactId> <groupId>io.confluent</groupId> </exclusion> <exclusion> <artifactId>common-utils</artifactId> <groupId>io.confluent</groupId> </exclusion> <exclusion> <artifactId>commons-compress</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> <version>1.11.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>commons-compress</artifactId> <groupId>org.apache.commons</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.agent</artifactId> <version>0.8.13</version> <classifier>runtime</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.36</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <site> <id>azure-java-build-docs</id> <url>${site.url}/site/${project.artifactId}</url> </site> </distributionManagement> <properties> <revapi.skip>true</revapi.skip> <javaModulesSurefireArgLine>--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED --add-opens com.azure.cosmos/com.azure.cosmos.implementation=ALL-UNNAMED --add-opens com.azure.cosmos/com.azure.cosmos.implementation.apachecommons.lang=ALL-UNNAMED --add-opens com.azure.cosmos/com.azure.cosmos.implementation.caches=ALL-UNNAMED --add-opens com.azure.cosmos/com.azure.cosmos.implementation.caches=com.azure.cosmos.kafka.connect --add-opens com.azure.cosmos/com.azure.cosmos.implementation.faultinjection=ALL-UNNAMED --add-opens com.azure.cosmos/com.azure.cosmos.implementation.guava25.base=ALL-UNNAMED --add-opens com.azure.cosmos/com.azure.cosmos.implementation.routing=ALL-UNNAMED --add-opens com.azure.cosmos.kafka.connect/com.azure.cosmos.kafka.connect=ALL-UNNAMED --add-opens com.azure.cosmos.kafka.connect/com.azure.cosmos.kafka.connect.implementation=ALL-UNNAMED --add-opens com.azure.cosmos.kafka.connect/com.azure.cosmos.kafka.connect.implementation.sink=ALL-UNNAMED,com.fasterxml.jackson.databind --add-opens com.azure.cosmos.kafka.connect/com.azure.cosmos.kafka.connect.implementation.sink.idStrategy=ALL-UNNAMED --add-opens com.azure.cosmos.kafka.connect/com.azure.cosmos.kafka.connect.implementation.source=com.fasterxml.jackson.databind,ALL-UNNAMED --add-exports com.azure.cosmos/com.azure.cosmos.implementation.changefeed.common=com.azure.cosmos.kafka.connect --add-exports com.azure.cosmos/com.azure.cosmos.implementation.feedranges=com.azure.cosmos.kafka.connect --add-exports com.azure.cosmos/com.azure.cosmos.implementation.query=com.azure.cosmos.kafka.connect</javaModulesSurefireArgLine> <doclintMissingInclusion>-</doclintMissingInclusion> <jacoco.skip>true</jacoco.skip> <spotless.skip>true</spotless.skip> <shadingPrefix>azure_cosmos_kafka_connect</shadingPrefix> <shadingPrefixNetty>azurecosmoskafkaconnect</shadingPrefixNetty> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>