2014-10-01 11:39:01 -04: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>
|
|
|
|
|
2015-05-04 18:53:17 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-parent</artifactId>
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2014-10-01 11:39:01 -04:00
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-license</artifactId>
|
2014-11-21 18:45:42 -05:00
|
|
|
<packaging>pom</packaging>
|
2015-01-26 21:45:36 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2014-11-21 18:45:42 -05:00
|
|
|
<modules>
|
|
|
|
<module>core-shaded</module>
|
|
|
|
<module>core</module>
|
|
|
|
<module>licensor</module>
|
|
|
|
<module>plugin</module>
|
|
|
|
</modules>
|
2014-10-23 22:02:26 -04:00
|
|
|
|
2014-10-01 11:39:01 -04:00
|
|
|
<properties>
|
2014-11-21 18:45:42 -05:00
|
|
|
<license.basedir combine.self="override">${project.basedir}</license.basedir>
|
2014-10-01 11:39:01 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-11-12 17:06:38 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.mycila</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<configuration>
|
2014-12-03 11:47:21 -05:00
|
|
|
<header>${license.basedir}/dev-tools/license/elasticsearch_license_header.txt</header>
|
2014-11-12 17:06:38 -05:00
|
|
|
<headerDefinitions>
|
2014-12-03 11:47:21 -05:00
|
|
|
<headerDefinition>${license.basedir}/dev-tools/license/license_header_definition.xml</headerDefinition>
|
2014-11-12 17:06:38 -05:00
|
|
|
</headerDefinitions>
|
|
|
|
<includes>
|
2014-11-21 18:45:42 -05:00
|
|
|
<include>**/src/main/java/org/elasticsearch/**/*.java</include>
|
|
|
|
<include>**/src/test/java/org/elasticsearch/**/*.java</include>
|
2014-11-12 17:06:38 -05:00
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-10-01 11:39:01 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-05-13 07:49:34 -04:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>oss-snapshots</id>
|
|
|
|
<name>Sonatype OSS Snapshots</name>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2014-11-07 11:21:29 -08:00
|
|
|
<profiles>
|
2014-11-12 17:06:38 -05:00
|
|
|
<profile>
|
2015-01-23 05:41:13 +01:00
|
|
|
<id>deploy-internal</id>
|
2014-11-12 17:06:38 -05:00
|
|
|
<distributionManagement>
|
2015-01-23 05:41:13 +01:00
|
|
|
<repository>
|
|
|
|
<id>elasticsearch-internal-releases</id>
|
|
|
|
<name>Elasticsearch Internal Releases</name>
|
|
|
|
<url>http://maven.elasticsearch.org/artifactory/internal-releases</url>
|
|
|
|
</repository>
|
2014-11-12 17:06:38 -05:00
|
|
|
<snapshotRepository>
|
2015-01-23 05:41:13 +01:00
|
|
|
<id>elasticsearch-internal-snapshots</id>
|
|
|
|
<name>Elasticsearch Internal Snapshots</name>
|
|
|
|
<url>http://maven.elasticsearch.org/artifactory/internal-snapshots</url>
|
2014-11-12 17:06:38 -05:00
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
</profile>
|
2015-01-26 22:00:29 -05:00
|
|
|
<profile>
|
|
|
|
<id>deploy-public</id>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>elasticsearch-public-releases</id>
|
|
|
|
<name>Elasticsearch Public Releases</name>
|
|
|
|
<url>http://maven.elasticsearch.org/artifactory/public-releases</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
</profile>
|
2014-11-21 18:45:42 -05:00
|
|
|
<profile>
|
|
|
|
<id>default</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.carrotsearch.randomizedtesting</groupId>
|
|
|
|
<artifactId>junit4-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>${tests.jvm.argline}</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2014-11-07 11:21:29 -08:00
|
|
|
</profiles>
|
|
|
|
</project>
|