amazon-kinesis-client
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>software.amazon.kinesis</groupId> <artifactId>amazon-kinesis-client</artifactId> <version>3.0.1</version> </dependency>
<!-- /* * Copyright 2019 Amazon.com, Inc. or its affiliates. * Licensed under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ --> <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 https://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>software.amazon.kinesis</groupId> <artifactId>amazon-kinesis-client-pom</artifactId> <version>3.0.1</version> </parent> <artifactId>amazon-kinesis-client</artifactId> <packaging>jar</packaging> <name>Amazon Kinesis Client Library for Java</name> <description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. </description> <url>https://aws.amazon.com/kinesis</url> <scm> <url>https://github.com/awslabs/amazon-kinesis-client.git</url> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <protobuf.version>4.27.5</protobuf.version> <sqlite4java.version>1.0.392</sqlite4java.version> <sqlite4java.native>libsqlite4java</sqlite4java.native> <sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath> <slf4j.version>2.0.13</slf4j.version> <gsr.version>1.1.19</gsr.version> <skipITs>true</skipITs> </properties> <dependencies> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>kinesis</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb</artifactId> <version>${awssdk.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/software.amazon.awssdk/dynamodb-enhanced --> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb-enhanced</artifactId> <version>${awssdk.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.amazonaws/dynamodb-lock-client --> <dependency> <groupId>com.amazonaws</groupId> <artifactId>dynamodb-lock-client</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>cloudwatch</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>netty-nio-client</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>sdk-core</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>aws-core</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>arns</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>regions</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>utils</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>http-client-spi</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>dynamodb-enhanced</artifactId> <version>${awssdk.version}</version> </dependency> <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-serde</artifactId> <version>${gsr.version}</version> <exclusions> <exclusion> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-sts</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-common</artifactId> <version>${gsr.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.1.1-jre</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.14.0</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-collections/commons-collections --> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.2</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.4</version> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty-handler</artifactId> <version>4.1.108.Final</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.10.1</version> </dependency> <dependency> <groupId>org.reactivestreams</groupId> <artifactId>reactive-streams</artifactId> <version>1.0.4</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>annotations</artifactId> <version>2.25.64</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jetbrains/annotations --> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>26.0.1</version> </dependency> <dependency> <groupId>io.reactivex.rxjava3</groupId> <artifactId>rxjava</artifactId> <version>3.1.8</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>sts</artifactId> <version>${awssdk.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>auth</artifactId> <version>${awssdk.version}</version> <scope>test</scope> </dependency> <!-- TODO: Migrate all tests to Junit5 --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.11.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-params --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.11.3</version> <scope>test</scope> </dependency> <!-- Using older version to be compatible with Java 8 --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>3.12.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.12.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <!-- Using older version to be compatible with Java 8 --> <!-- https://mvnrepository.com/artifact/com.amazonaws/DynamoDBLocal --> <dependency> <groupId>com.amazonaws</groupId> <artifactId>DynamoDBLocal</artifactId> <version>1.25.0</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.3.14</version> <scope>test</scope> </dependency> </dependencies> <!--<repositories>--> <!--<repository>--> <!--<id>dynamodblocal</id>--> <!--<name>AWS DynamoDB Local Release Repository</name>--> <!--<url>https://s3-us-west-2.amazonaws.com/dynamodb-local/release</url>--> <!--</repository>--> <!--</repositories>--> <developers> <developer> <id>amazonwebservices</id> <organization>Amazon Web Services</organization> <organizationUrl>https://aws.amazon.com</organizationUrl> <roles> <role>developer</role> </roles> </developer> </developers> <build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.6.0</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>8</release> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> <configuration> <skipTests>${skip.ut}</skipTests> <skipITs>${skipITs}</skipITs> <excludes> <exclude>**/*IntegrationTest.java</exclude> </excludes> <systemPropertyVariables> <sqlite4java.library.path>${sqlite4java.libpath}</sqlite4java.library.path> <awsProfile>${awsProfile}</awsProfile> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>3.2.5</version> <configuration> <includes> <include>**/*IntegrationTest.java</include> </includes> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>test-compile</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <!-- Mac OS X --> <artifactItem> <groupId>com.almworks.sqlite4java</groupId> <artifactId>${sqlite4java.native}-osx</artifactId> <version>${sqlite4java.version}</version> <type>dylib</type> <overWrite>true</overWrite> <outputDirectory>${sqlite4java.libpath}</outputDirectory> </artifactItem> <!-- Linux --> <!-- i386 --> <artifactItem> <groupId>com.almworks.sqlite4java</groupId> <artifactId>${sqlite4java.native}-linux-i386</artifactId> <version>${sqlite4java.version}</version> <type>so</type> <overWrite>true</overWrite> <outputDirectory>${sqlite4java.libpath}</outputDirectory> </artifactItem> <!-- amd64 --> <artifactItem> <groupId>com.almworks.sqlite4java</groupId> <artifactId>${sqlite4java.native}-linux-amd64</artifactId> <version>${sqlite4java.version}</version> <type>so</type> <overWrite>true</overWrite> <outputDirectory>${sqlite4java.libpath}</outputDirectory> </artifactItem> <!-- Windows --> <!-- x86 --> <artifactItem> <groupId>com.almworks.sqlite4java</groupId> <artifactId>sqlite4java-win32-x86</artifactId> <version>${sqlite4java.version}</version> <type>dll</type> <overWrite>true</overWrite> <outputDirectory>${sqlite4java.libpath}</outputDirectory> </artifactItem> <!-- x64 --> <artifactItem> <groupId>com.almworks.sqlite4java</groupId> <artifactId>sqlite4java-win32-x64</artifactId> <version>${sqlite4java.version}</version> <type>dll</type> <overWrite>true</overWrite> <outputDirectory>${sqlite4java.libpath}</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <configuration> <excludePackageNames>com.amazonaws.services.kinesis.producer.protobuf</excludePackageNames> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Required for generating maven version as a Java class for runtime access --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>generate-version-class</id> <goals> <goal>filter-sources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>copy-dist</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <resources> <resource> <directory>${project.basedir}/target/generated-sources/java-templates/</directory> <filtering>false</filtering> <excludes> </excludes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.30.0</version> <!--last version to support java 8--> <configuration> <java> <palantirJavaFormat /> <importOrder> <order>java,,\#</order> </importOrder> </java> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>com.salesforce.servicelibs</groupId> <artifactId>proto-backwards-compatibility</artifactId> <version>1.0.7</version> <executions> <execution> <goals> <goal>backwards-compatibility-check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.2</version> <executions> <execution> <id>analyze-dependencies</id> <phase>verify</phase> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>true</failOnWarning> <!-- Ignore Runtime/Provided/Test/System scopes for unused dependency analysis. --> <ignoreNonCompile>true</ignoreNonCompile> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>disable-java8-doclint</id> <activation> <jdk>[1.8,)</jdk> </activation> <properties> <doclint>none</doclint> </properties> </profile> </profiles> </project>