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-03-25 09:56:34 +01:00
|
|
|
<parent>
|
2015-07-03 20:00:32 +02:00
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
2015-08-14 16:52:55 +02:00
|
|
|
<artifactId>plugins</artifactId>
|
2015-09-03 10:43:28 +02:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2015-03-25 09:56:34 +01:00
|
|
|
</parent>
|
|
|
|
|
2015-08-25 00:10:20 +02: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 20:00:32 +02:00
|
|
|
|
2011-12-05 15:42:33 +02:00
|
|
|
<properties>
|
2015-08-25 00:10:20 +02: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-25 00:10:20 +02:00
|
|
|
<tests.rest.suite>discovery_ec2</tests.rest.suite>
|
2015-07-07 19:03:37 +02:00
|
|
|
<tests.rest.load_packaged>false</tests.rest.load_packaged>
|
2015-09-09 12:47:07 -07:00
|
|
|
<xlint.options>-Xlint:-rawtypes</xlint.options>
|
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>
|
2015-07-08 16:17:27 +02: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 15:42:33 +02:00
|
|
|
</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>
|