OpenSearch/pom.xml

143 lines
5.1 KiB
XML
Raw Normal View History

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>
2011-12-05 08:42:33 -05:00
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-cloud-aws</artifactId>
<version>3.0.0-SNAPSHOT</version>
2011-12-05 08:42:33 -05:00
<packaging>jar</packaging>
<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>
<url>https://github.com/elastic/elasticsearch-cloud-aws/</url>
2011-12-05 08:42:33 -05:00
<inceptionYear>2009</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:elastic/elasticsearch-cloud-aws.git</connection>
<developerConnection>scm:git:git@github.com:elastic/elasticsearch-cloud-aws.git</developerConnection>
<url>http://github.com/elastic/elasticsearch-cloud-aws</url>
2011-12-05 08:42:33 -05:00
</scm>
2015-03-25 04:56:34 -04:00
<parent>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
2011-12-05 08:42:33 -05:00
<properties>
<amazonaws.version>1.9.34</amazonaws.version>
2011-12-05 08:42:33 -05:00
</properties>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
</dependency>
<dependency>
<groupId>com.carrotsearch.randomizedtesting</groupId>
<artifactId>randomizedtesting-runner</artifactId>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-test-framework</artifactId>
</dependency>
2011-12-05 08:42:33 -05:00
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<scope>provided</scope>
2011-12-05 08:42:33 -05:00
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
2014-11-05 17:49:08 -05:00
<version>${lucene.maven.version}</version>
<scope>provided</scope>
</dependency>
2011-12-05 08:42:33 -05:00
<!-- AWS SDK -->
2011-12-05 08:42:33 -05:00
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-ec2</artifactId>
<version>${amazonaws.version}</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>${amazonaws.version}</version>
2011-12-05 08:42:33 -05:00
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<type>test-jar</type>
</dependency>
2011-12-05 08:42:33 -05:00
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2011-12-05 08:42:33 -05:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.carrotsearch.randomizedtesting</groupId>
<artifactId>junit4-maven-plugin</artifactId>
</plugin>
2011-12-05 08:42:33 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2011-12-05 08:42:33 -05:00
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
2012-02-26 03:15:07 -05:00
<appendAssemblyId>false</appendAssemblyId>
2011-12-13 08:04:15 -05:00
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
2011-12-05 08:42:33 -05:00
<descriptors>
<descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor>
</descriptors>
</configuration>
2011-12-13 08:04:15 -05:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
2011-12-05 08:42:33 -05:00
</plugin>
</plugins>
</build>
2015-01-02 15:10:01 -05:00
<repositories>
<repository>
<id>oss-snapshots</id>
<name>Sonatype OSS Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>