Created
April 14, 2015 18:54
-
-
Save nalingarg2/c8c2ce8bcd4dacc7c551 to your computer and use it in GitHub Desktop.
aws kinesis maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>df</groupId> | |
<artifactId>df</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<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>Amazon Software License</name> | |
<url>https://aws.amazon.com/asl</url> | |
<distribution>repo</distribution> | |
</license> | |
</licenses> | |
<properties> | |
<aws-java-sdk.version>1.9.16</aws-java-sdk.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>com.amazonaws</groupId> | |
<artifactId>aws-java-sdk</artifactId> | |
<version>${aws-java-sdk.version}</version> | |
</dependency> | |
</dependencies> | |
<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> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.2</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
<encoding>UTF-8</encoding> | |
</configuration> | |
</plugin> | |
</plugins> | |
</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> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment