2018-08-02 17:57:11 +00:00
|
|
|
<!--
|
2019-04-05 22:25:09 +00:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2018-08-02 17:57:11 +00:00
|
|
|
-->
|
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>
|
2024-05-02 00:54:42 +00:00
|
|
|
<version>2.6.1-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>
|
2024-03-27 17:09:21 +00:00
|
|
|
<awssdk.version>2.25.11</awssdk.version>
|
2018-08-02 17:57:11 +00:00
|
|
|
</properties>
|
|
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<licenses>
|
|
|
|
|
<license>
|
2019-04-05 22:25:09 +00:00
|
|
|
<name>Apache License, Version 2.0</name>
|
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
2016-07-20 19:46:26 +00:00
|
|
|
<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>
|
|
|
|
|
|
2018-09-04 17:44:30 +00:00
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossrh</id>
|
2019-10-04 20:53:14 +00:00
|
|
|
<url>https://aws.oss.sonatype.org/content/repositories/snapshots</url>
|
2018-09-04 17:44:30 +00:00
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossrh</id>
|
2019-10-04 20:53:14 +00:00
|
|
|
<url>https://aws.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
2018-09-04 17:44:30 +00:00
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2016-07-20 19:46:26 +00:00
|
|
|
<build>
|
2023-06-23 20:15:33 +00:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<configLocation>checkstyle/checkstyle.xml</configLocation>
|
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
|
<failOnViolation>true</failOnViolation>
|
2023-06-26 19:25:10 +00:00
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
2023-06-23 20:15:33 +00:00
|
|
|
<suppressionsLocation>checkstyle/checkstyle-suppressions.xml</suppressionsLocation>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2016-07-20 19:46:26 +00:00
|
|
|
<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>
|
2023-05-15 21:16:37 +00:00
|
|
|
<version>3.11.0</version>
|
2016-07-20 19:46:26 +00:00
|
|
|
<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>
|
2024-03-27 17:08:41 +00:00
|
|
|
<version>3.2.1</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>
|
2023-05-16 22:32:01 +00:00
|
|
|
<version>1.6.13</version>
|
2018-08-02 17:57:11 +00:00
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>sonatype-nexus-staging</serverId>
|
2019-10-04 20:53:14 +00:00
|
|
|
<nexusUrl>https://aws.oss.sonatype.org</nexusUrl>
|
2018-08-02 17:57:11 +00:00
|
|
|
<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>
|