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-08-14 10:52:55 -04:00
|
|
|
<artifactId>plugins</artifactId>
|
2015-09-03 04:43:28 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2015-03-25 04:56:34 -04:00
|
|
|
</parent>
|
|
|
|
|
2015-08-24 18:10:20 -04:00
|
|
|
<artifactId>discovery-ec2</artifactId>
|
|
|
|
<name>Plugin: Discovery: EC2</name>
|
|
|
|
<description>The EC2 discovery plugin allows to use AWS API for the unicast discovery mechanism.</description>
|
2015-07-03 14:00:32 -04:00
|
|
|
|
2011-12-05 08:42:33 -05:00
|
|
|
<properties>
|
2015-08-24 18:10:20 -04:00
|
|
|
<elasticsearch.plugin.classname>org.elasticsearch.plugin.discovery.ec2.Ec2DiscoveryPlugin</elasticsearch.plugin.classname>
|
2015-05-13 23:13:59 -04:00
|
|
|
<tests.jvms>1</tests.jvms>
|
2015-08-24 18:10:20 -04:00
|
|
|
<tests.rest.suite>discovery_ec2</tests.rest.suite>
|
2015-07-07 13:03:37 -04:00
|
|
|
<tests.rest.load_packaged>false</tests.rest.load_packaged>
|
2015-09-09 15:47:07 -04:00
|
|
|
<xlint.options>-Xlint:-rawtypes</xlint.options>
|
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>
|
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>
|