486 lines
20 KiB
XML
486 lines
20 KiB
XML
<?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>
|
|
<parent>
|
|
<groupId>org.elasticsearch</groupId>
|
|
<artifactId>elasticsearch-parent</artifactId>
|
|
<version>2.0.0-beta1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
<name>Elasticsearch Core</name>
|
|
<description>Elasticsearch - Open Source, Distributed, RESTful Search Engine</description>
|
|
|
|
|
|
<properties>
|
|
<skip.integ.tests>true</skip.integ.tests>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-all</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
|
<artifactId>randomizedtesting-runner</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-test-framework</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.jimfs</groupId>
|
|
<artifactId>jimfs</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-backward-codecs</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-analyzers-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-queries</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-memory</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-highlighter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-queryparser</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-suggest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-join</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-spatial</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-expressions</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.spatial4j</groupId>
|
|
<artifactId>spatial4j</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vividsolutions</groupId>
|
|
<artifactId>jts</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- needed for templating -->
|
|
<dependency>
|
|
<groupId>com.github.spullara.mustache.java</groupId>
|
|
<artifactId>compiler</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- Lucene spatial -->
|
|
|
|
|
|
<!-- START: dependencies that might be shaded -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.carrotsearch</groupId>
|
|
<artifactId>hppc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.joda</groupId>
|
|
<artifactId>joda-convert</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-smile</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-cbor</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.ning</groupId>
|
|
<artifactId>compress-lzf</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tdunning</groupId>
|
|
<artifactId>t-digest</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hdrhistogram</groupId>
|
|
<artifactId>HdrHistogram</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-cli</groupId>
|
|
<artifactId>commons-cli</artifactId>
|
|
</dependency>
|
|
<!-- END: dependencies that might be shaded -->
|
|
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<classifier>indy</classifier>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>apache-log4j-extras</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- remove this for java 8 -->
|
|
<dependency>
|
|
<groupId>com.twitter</groupId>
|
|
<artifactId>jsr166e</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>${project.basedir}/src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.json</include>
|
|
<include>**/*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<directory>${project.basedir}/src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*.*</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
|
|
<testResources>
|
|
<testResource>
|
|
<directory>${project.basedir}/src/test/java</directory>
|
|
<includes>
|
|
<include>**/*.json</include>
|
|
<include>**/*.yml</include>
|
|
<include>**/*.txt</include>
|
|
<include>**/*.properties</include>
|
|
</includes>
|
|
<filtering>true</filtering>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>${project.basedir}/src/test/java</directory>
|
|
<includes>
|
|
<include>**/*.gz</include>
|
|
</includes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>${project.basedir}/src/test/resources</directory>
|
|
<includes>
|
|
<include>**/*.*</include>
|
|
</includes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>${elasticsearch.tools.directory}/rest-api-spec</directory>
|
|
<targetPath>rest-api-spec</targetPath>
|
|
<includes>
|
|
<include>api/*.json</include>
|
|
<include>test/**/*.yaml</include>
|
|
</includes>
|
|
</testResource>
|
|
<!-- shared test resources like log4j.properties -->
|
|
<testResource>
|
|
<directory>${elasticsearch.tools.directory}/shared-test-resources</directory>
|
|
<filtering>false</filtering>
|
|
</testResource>
|
|
</testResources>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-test-sources</id>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includes>
|
|
<include>org/elasticsearch/test/**/*</include>
|
|
<include>org/elasticsearch/bootstrap/BootstrapForTesting.class</include>
|
|
<include>org/elasticsearch/common/cli/CliToolTestCase.class</include>
|
|
<include>org/elasticsearch/common/cli/CliToolTestCase$*.class</include>
|
|
</includes>
|
|
<excludes>
|
|
<!-- unit tests for yaml suite parser & rest spec parser need to be excluded -->
|
|
<exclude>org/elasticsearch/test/rest/test/**/*</exclude>
|
|
<!-- unit tests for test framework classes-->
|
|
<exclude>org/elasticsearch/test/test/**/*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
<shadedClassifierName>shaded</shadedClassifierName>
|
|
<shadeTestJar>false</shadeTestJar>
|
|
<minimizeJar>true</minimizeJar>
|
|
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>com.google.guava:guava</include>
|
|
<include>com.carrotsearch:hppc</include>
|
|
<include>com.fasterxml.jackson.core:jackson-core</include>
|
|
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-smile</include>
|
|
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-yaml</include>
|
|
<include>com.fasterxml.jackson.dataformat:jackson-dataformat-cbor</include>
|
|
<include>joda-time:joda-time</include>
|
|
<include>org.joda:joda-convert</include>
|
|
<include>io.netty:netty</include>
|
|
<include>com.ning:compress-lzf</include>
|
|
<include>com.github.spullara.mustache.java:compiler</include>
|
|
<include>com.tdunning:t-digest</include>
|
|
<include>org.apache.commons:commons-lang3</include>
|
|
<include>commons-cli:commons-cli</include>
|
|
<include>com.twitter:jsr166e</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<transformers>
|
|
<!-- copy over MANIFEST.MF from unshaded jar, but mark jar as shaded too -->
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
<manifestEntries>
|
|
<X-Build-Shaded>true</X-Build-Shaded>
|
|
</manifestEntries>
|
|
</transformer>
|
|
</transformers>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.google.common</pattern>
|
|
<shadedPattern>org.elasticsearch.common</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.carrotsearch.hppc</pattern>
|
|
<shadedPattern>org.elasticsearch.common.hppc</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.twitter.jsr166e</pattern>
|
|
<shadedPattern>org.elasticsearch.common.util.concurrent.jsr166e</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.fasterxml.jackson</pattern>
|
|
<shadedPattern>org.elasticsearch.common.jackson</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.joda.time</pattern>
|
|
<shadedPattern>org.elasticsearch.common.joda.time</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.jboss.netty</pattern>
|
|
<shadedPattern>org.elasticsearch.common.netty</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.ning.compress</pattern>
|
|
<shadedPattern>org.elasticsearch.common.compress</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.github.mustachejava</pattern>
|
|
<shadedPattern>org.elasticsearch.common.mustache</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.tdunning.math.stats</pattern>
|
|
<shadedPattern>org.elasticsearch.common.stats</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.commons.lang</pattern>
|
|
<shadedPattern>org.elasticsearch.common.lang</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.commons.cli</pattern>
|
|
<shadedPattern>org.elasticsearch.common.cli.commons</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/license/**</exclude>
|
|
<exclude>META-INF/*</exclude>
|
|
<exclude>META-INF/maven/**</exclude>
|
|
<exclude>LICENSE</exclude>
|
|
<exclude>NOTICE</exclude>
|
|
<exclude>/*.txt</exclude>
|
|
<exclude>build.properties</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>io.netty:netty</artifact>
|
|
<includes>
|
|
<include>org/jboss/netty/**</include>
|
|
</includes>
|
|
</filter>
|
|
</filters>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<includes>
|
|
<include>rest-api-spec/**/*</include>
|
|
<include>org/elasticsearch/test/**/*</include>
|
|
<include>org/elasticsearch/bootstrap/BootstrapForTesting.class</include>
|
|
<include>org/elasticsearch/common/cli/CliToolTestCase.class</include>
|
|
<include>org/elasticsearch/common/cli/CliToolTestCase$*.class</include>
|
|
</includes>
|
|
<excludes>
|
|
<!-- unit tests for yaml suite parser & rest spec parser need to be excluded -->
|
|
<exclude>org/elasticsearch/test/rest/test/**/*</exclude>
|
|
<!-- unit tests for test framework classes-->
|
|
<exclude>org/elasticsearch/test/test/**/*</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>org/apache/lucene/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.mycila</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<!-- Guice -->
|
|
<exclude>src/main/java/org/elasticsearch/common/inject/**</exclude>
|
|
<exclude>src/main/java/org/elasticsearch/common/geo/GeoHashUtils.java</exclude>
|
|
<exclude>src/main/java/org/apache/lucene/**/X*.java</exclude>
|
|
<!-- t-digest -->
|
|
<exclude>src/main/java/org/elasticsearch/search/aggregations/metrics/percentiles/tdigest/TDigestState.java</exclude>
|
|
<!-- netty pipelining -->
|
|
<exclude>src/main/java/org/elasticsearch/http/netty/pipelining/**</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
<profiles>
|
|
<!-- license profile, to generate third party license file -->
|
|
<profile>
|
|
<id>license</id>
|
|
<activation>
|
|
<property>
|
|
<name>license.generation</name>
|
|
<value>true</value>
|
|
</property>
|
|
</activation>
|
|
<!-- not including license-maven-plugin is sufficent to expose default license -->
|
|
</profile>
|
|
</profiles>
|
|
</project>
|