2011-12-05 08:42:33 -05: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 04:18:59 -05:00
2015-03-25 04:56:34 -04:00
<parent >
2015-07-03 14:00:32 -04:00
<groupId > org.elasticsearch.plugin</groupId>
2015-05-21 22:51:52 -04:00
<artifactId > elasticsearch-plugin</artifactId>
2015-07-13 13:45:53 -04:00
<version > 2.0.0-beta1-SNAPSHOT</version>
2015-03-25 04:56:34 -04:00
</parent>
2015-07-03 14:00:32 -04:00
<artifactId > elasticsearch-cloud-aws</artifactId>
<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 08:42:33 -05:00
<properties >
2015-06-15 03:30:44 -04:00
<amazonaws.version > 1.10.0</amazonaws.version>
2015-05-13 23:13:59 -04:00
<tests.jvms > 1</tests.jvms>
2015-07-07 13:03:37 -04:00
<tests.rest.suite > cloud_aws</tests.rest.suite>
<tests.rest.load_packaged > false</tests.rest.load_packaged>
2011-12-05 08:42:33 -05:00
</properties>
<dependencies >
2014-12-17 04:18:59 -05:00
<!-- AWS SDK -->
2011-12-05 08:42:33 -05:00
<dependency >
<groupId > com.amazonaws</groupId>
2014-11-10 09:53:24 -05: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 10:56:22 -04:00
<version > ${amazonaws.version}</version>
2011-12-05 08:42:33 -05:00
</dependency>
2015-07-08 10:17:27 -04:00
<!-- We need to force here the compile scope as it was defined as test scope in plugins/pom.xml -->
<!-- TODO: remove this dependency when we will have a REST Test module -->
<dependency >
<groupId > org.apache.httpcomponents</groupId>
<artifactId > httpclient</artifactId>
<scope > compile</scope>
</dependency>
2011-12-05 08:42:33 -05:00
</dependencies>
<build >
<plugins >
<plugin >
2014-12-17 04:18:59 -05:00
<groupId > org.apache.maven.plugins</groupId>
2011-12-05 08:42:33 -05:00
<artifactId > maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
2015-01-02 15:10:01 -05:00
2013-05-31 03:35:34 -04:00
</project>