2011-12-05 15:42:33 +02:00
<?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>
2014-12-17 10:18:59 +01:00
2015-06-05 13:12:36 +02:00
<groupId > org.elasticsearch.plugin</groupId>
2011-12-05 15:42:33 +02:00
<artifactId > elasticsearch-cloud-aws</artifactId>
2015-06-05 13:12:36 +02:00
2011-12-05 15:42:33 +02:00
<packaging > jar</packaging>
2014-03-17 11:50:28 +01:00
<name > Elasticsearch AWS cloud plugin</name>
<description > The Amazon Web Service (AWS) Cloud plugin allows to use AWS API for the unicast discovery mechanism and add S3 repositories.</description>
2011-12-05 15:42:33 +02:00
2015-03-25 09:56:34 +01:00
<parent >
<groupId > org.elasticsearch</groupId>
2015-05-21 22:51:52 -04:00
<artifactId > elasticsearch-plugin</artifactId>
2015-03-25 09:56:34 +01:00
<version > 2.0.0-SNAPSHOT</version>
</parent>
2011-12-05 15:42:33 +02:00
<properties >
2015-06-15 09:30:44 +02:00
<amazonaws.version > 1.10.0</amazonaws.version>
2015-05-13 23:13:59 -04:00
<tests.jvms > 1</tests.jvms>
2011-12-05 15:42:33 +02:00
</properties>
<dependencies >
2014-12-17 10:18:59 +01:00
<!-- AWS SDK -->
2011-12-05 15:42:33 +02:00
<dependency >
<groupId > com.amazonaws</groupId>
2014-11-10 15:53:24 +01:00
<artifactId > aws-java-sdk-ec2</artifactId>
<version > ${amazonaws.version}</version>
</dependency>
<dependency >
<groupId > com.amazonaws</groupId>
<artifactId > aws-java-sdk-s3</artifactId>
2014-10-09 16:56:22 +02:00
<version > ${amazonaws.version}</version>
2011-12-05 15:42:33 +02:00
</dependency>
</dependencies>
<build >
<plugins >
<plugin >
2014-12-17 10:18:59 +01:00
<groupId > org.apache.maven.plugins</groupId>
2011-12-05 15:42:33 +02:00
<artifactId > maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
2015-01-02 21:10:01 +01:00
2013-05-31 09:35:34 +02:00
</project>