2018-08-02 17:57:11 +00:00
|
|
|
<!--
|
|
|
|
|
~ Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
|
~
|
|
|
|
|
~ Licensed under the Amazon Software License (the "License").
|
|
|
|
|
~ You may not use this file except in compliance with the License.
|
|
|
|
|
~ A copy of the License is located at
|
|
|
|
|
~
|
|
|
|
|
~ http://aws.amazon.com/asl/
|
|
|
|
|
~
|
|
|
|
|
~ or in the "license" file accompanying this file. This file 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.
|
|
|
|
|
-->
|
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>
|
2018-08-02 17:57:11 +00:00
|
|
|
<groupId>software.amazon.kinesis</groupId>
|
|
|
|
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>Amazon Kinesis Client Library</name>
|
2018-08-22 00:01:30 +00:00
|
|
|
<version>2.0.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
|
|
|
|
2018-08-02 17:57:11 +00:00
|
|
|
<properties>
|
|
|
|
|
<aws-java-sdk.version>1.11.272</aws-java-sdk.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
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
|
|
|
|
2018-08-02 17:57:11 +00:00
|
|
|
<modules>
|
|
|
|
|
<module>amazon-kinesis-client</module>
|
|
|
|
|
<module>amazon-kinesis-client-multilang</module>
|
|
|
|
|
</modules>
|
2016-07-20 19:46:26 +00:00
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
</build>
|
2018-08-02 17:57:11 +00:00
|
|
|
|
2016-07-20 20:14:25 +00:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>publishing</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2018-08-02 17:57:11 +00:00
|
|
|
<version>1.6</version>
|
2016-07-20 20:14:25 +00:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-08-02 17:57:11 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.8</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>sonatype-nexus-staging</serverId>
|
|
|
|
|
<nexusUrl>https://oss.sonatype.org</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2016-07-20 20:14:25 +00:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2013-12-17 02:07:34 +00:00
|
|
|
|
|
|
|
|
</project>
|