2013-12-17 02:07:34 +00:00
|
|
|
<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">
|
2016-07-20 19:46:26 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>amazon-kinesis-client</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<name>Amazon Kinesis Client Library for Java</name>
|
|
|
|
|
<version>1.6.4</version>
|
|
|
|
|
<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>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<scm>
|
|
|
|
|
<url>https://github.com/awslabs/amazon-kinesis-client.git</url>
|
|
|
|
|
</scm>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>Amazon Software License</name>
|
|
|
|
|
<url>https://aws.amazon.com/asl</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<properties>
|
|
|
|
|
<aws-java-sdk.version>1.11.14</aws-java-sdk.version>
|
|
|
|
|
</properties>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-core</artifactId>
|
|
|
|
|
<version>${aws-java-sdk.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-dynamodb</artifactId>
|
|
|
|
|
<version>${aws-java-sdk.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-kinesis</artifactId>
|
|
|
|
|
<version>${aws-java-sdk.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-cloudwatch</artifactId>
|
|
|
|
|
<version>${aws-java-sdk.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>18.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
|
<version>2.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<!-- Test -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.11</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
|
<version>1.10.19</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
|
<version>1.3</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>DynamoDBLocal</artifactId>
|
|
|
|
|
<version>1.10.5.1</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>dynamodb-local</id>
|
|
|
|
|
<name>DynamoDB Local Release Repository</name>
|
|
|
|
|
<url>http://dynamodb-local.s3-website-us-west-2.amazonaws.com/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>
|
|
|
|
|
<pluginManagement>
|
2013-12-17 02:07:34 +00:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2016-07-20 19:46:26 +00:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.7</source>
|
|
|
|
|
<target>1.7</target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
2013-12-17 02:07:34 +00:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2016-07-20 19:46:26 +00:00
|
|
|
</pluginManagement>
|
|
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>1.5</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.19.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<version>2.19.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*IntegrationTest.java</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>integration-test</goal>
|
|
|
|
|
<goal>verify</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
</build>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
|
|
|
|
</project>
|