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>
|
2018-05-04 17:06:13 +00:00
|
|
|
<version>1.9.2-SNAPSHOT</version>
|
2016-07-20 19:46:26 +00:00
|
|
|
<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>
|
2018-06-12 21:29:22 +00:00
|
|
|
<aws-java-sdk.version>1.11.344</aws-java-sdk.version>
|
2016-07-20 21:59:06 +00:00
|
|
|
<sqlite4java.version>1.0.392</sqlite4java.version>
|
|
|
|
|
<sqlite4java.native>libsqlite4java</sqlite4java.native>
|
|
|
|
|
<sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath>
|
2016-07-20 19:46:26 +00:00
|
|
|
</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-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>
|
2017-01-03 22:50:29 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>1.1.3</version>
|
|
|
|
|
</dependency>
|
2016-11-07 19:38:04 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.16.10</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</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>
|
2017-03-27 14:59:33 +00:00
|
|
|
<version>1.11.86</version>
|
2016-07-20 19:46:26 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-05-17 20:27:35 +00:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<version>1.2.17</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-07-20 19:46:26 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
2017-03-27 14:59:33 +00:00
|
|
|
<id>dynamodblocal</id>
|
|
|
|
|
<name>AWS DynamoDB Local Release Repository</name>
|
|
|
|
|
<url>https://s3-us-west-2.amazonaws.com/dynamodb-local/release</url>
|
2016-07-20 19:46:26 +00:00
|
|
|
</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>
|
2017-07-20 19:03:34 +00:00
|
|
|
<source>1.8</source>
|
|
|
|
|
<target>1.8</target>
|
2016-07-20 19:46:26 +00:00
|
|
|
<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-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.19.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*IntegrationTest.java</exclude>
|
|
|
|
|
</excludes>
|
2016-07-20 21:59:06 +00:00
|
|
|
<systemProperties>
|
|
|
|
|
<property>
|
|
|
|
|
<name>sqlite4java.library.path</name>
|
|
|
|
|
<value>${sqlite4java.libpath}</value>
|
|
|
|
|
</property>
|
|
|
|
|
</systemProperties>
|
2016-07-20 19:46:26 +00:00
|
|
|
</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>
|
2016-07-20 21:59:06 +00:00
|
|
|
<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>
|
2017-05-19 15:29:13 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>2.10.3</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.0.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2016-07-20 19:46:26 +00:00
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
</build>
|
2016-07-20 20:14:25 +00:00
|
|
|
<profiles>
|
2017-02-17 18:32:21 +00:00
|
|
|
<profile>
|
|
|
|
|
<id>disable-java8-doclint</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<jdk>[1.8,)</jdk>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2016-07-20 20:14:25 +00:00
|
|
|
<profile>
|
|
|
|
|
<id>publishing</id>
|
|
|
|
|
<build>
|
|
|
|
|
<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>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
|
|
|
|
</project>
|