2013-06-28 03:45:02 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-01-13 10:07:27 -05:00
|
|
|
<!-- Licensed to Elasticsearch under one or more contributor
|
2013-06-28 03:45:02 -04:00
|
|
|
license agreements. See the NOTICE file distributed with this work for additional
|
2014-01-13 10:07:27 -05:00
|
|
|
information regarding copyright ownership. Elasticsearch licenses this file to you
|
2013-06-28 03:45:02 -04:00
|
|
|
under the Apache License, Version 2.0 (the "License"); you may not use this
|
|
|
|
file except in compliance with the License. You may obtain a copy of the
|
|
|
|
License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by
|
|
|
|
applicable law or agreed to in writing, software distributed under the License
|
|
|
|
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the specific language
|
|
|
|
governing permissions and limitations under the License. -->
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-cloud-gce</artifactId>
|
2014-01-15 13:51:46 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2013-06-28 03:45:02 -04:00
|
|
|
|
2014-03-11 12:39:10 -04:00
|
|
|
<name>Elasticsearch Google Compute Engine cloud plugin</name>
|
|
|
|
<description>The Google Compute Engine (GCE) Cloud plugin allows to use GCE API for the unicast discovery mechanism.</description>
|
|
|
|
<url>https://github.com/elasticsearch/elasticsearch-cloud-gce/</url>
|
2013-06-28 03:45:02 -04:00
|
|
|
<inceptionYear>2013</inceptionYear>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<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:elasticsearch/elasticsearch-cloud-gce.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:elasticsearch/elasticsearch-cloud-gce.git</developerConnection>
|
|
|
|
<url>http://github.com/elasticsearch/elasticsearch-cloud-gce</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/elasticsearch/elasticsearch-cloud-gce/issues/</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<properties>
|
2014-03-11 12:45:58 -04:00
|
|
|
<elasticsearch.version>1.0.1</elasticsearch.version>
|
2014-01-29 05:21:45 -05:00
|
|
|
<google.gce.version>v1beta16-rev1-1.17.0-rc</google.gce.version>
|
|
|
|
<google.api.version>1.17.0-rc</google.api.version>
|
2014-03-11 12:45:58 -04:00
|
|
|
<lucene.version>4.6.1</lucene.version>
|
2014-01-13 10:07:27 -05:00
|
|
|
<tests.jvms>1</tests.jvms>
|
|
|
|
<tests.shuffle>true</tests.shuffle>
|
|
|
|
<tests.output>onerror</tests.output>
|
|
|
|
<tests.client.ratio></tests.client.ratio>
|
|
|
|
<es.logger.level>INFO</es.logger.level>
|
2013-06-28 03:45:02 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2014-01-13 10:07:27 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-test-framework</artifactId>
|
|
|
|
<version>${lucene.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2013-06-28 03:45:02 -04:00
|
|
|
<!-- Elasticsearch -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Google APIs -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.api-client</groupId>
|
|
|
|
<artifactId>google-api-client</artifactId>
|
|
|
|
<version>${google.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
<artifactId>google-http-client-jackson2</artifactId>
|
|
|
|
<version>${google.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.oauth-client</groupId>
|
|
|
|
<artifactId>google-oauth-client-jetty</artifactId>
|
|
|
|
<version>${google.api.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.apis</groupId>
|
|
|
|
<artifactId>google-api-services-compute</artifactId>
|
|
|
|
<version>${google.gce.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.17</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-01-13 10:07:27 -05:00
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
<type>test-jar</type>
|
2013-06-28 03:45:02 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-01-29 05:21:45 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
<version>1.3.RC2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
|
|
|
<version>1.3.RC2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-06-28 03:45:02 -04:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2013-07-01 17:17:14 -04:00
|
|
|
<extensions>
|
|
|
|
<extension>
|
|
|
|
<groupId>org.kuali.maven.wagons</groupId>
|
|
|
|
<artifactId>maven-s3-wagon</artifactId>
|
|
|
|
<version>1.1.19</version>
|
|
|
|
</extension>
|
|
|
|
</extensions>
|
|
|
|
|
2013-06-28 03:45:02 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2013-07-09 12:55:56 -04:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>elasticsearch.yml</include>
|
|
|
|
</includes>
|
|
|
|
</testResource>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>log4j.xml</include>
|
|
|
|
</includes>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2013-06-28 03:45:02 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.15</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
<configuration>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|