2015-09-01 12:11:03 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2019-03-20 04:38:23 -07:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-11-20 09:44:59 +01:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-07-20 17:07:57 +01:00
|
|
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
2021-02-17 10:55:31 +01:00
|
|
|
<version>3.2.14.BUILD-SNAPSHOT</version>
|
2014-07-20 17:07:57 +01:00
|
|
|
|
2018-11-20 09:44:59 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.data.build</groupId>
|
|
|
|
<artifactId>spring-data-parent</artifactId>
|
2021-02-17 10:34:05 +01:00
|
|
|
<version>2.2.13.RELEASE</version>
|
2018-11-20 09:44:59 +01:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Spring Data Elasticsearch</name>
|
|
|
|
<description>Spring Data Implementation for Elasticsearch</description>
|
|
|
|
<url>https://github.com/spring-projects/spring-data-elasticsearch</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<commonslang>2.6</commonslang>
|
2021-02-15 17:54:56 +01:00
|
|
|
<elasticsearch>6.8.14</elasticsearch>
|
2018-11-20 09:44:59 +01:00
|
|
|
<log4j>2.9.1</log4j>
|
2021-02-17 10:34:05 +01:00
|
|
|
<springdata.commons>2.2.13.RELEASE</springdata.commons>
|
2019-09-04 12:13:01 +02:00
|
|
|
<netty>4.1.39.Final</netty>
|
2018-11-20 09:44:59 +01:00
|
|
|
<java-module-name>spring.data.elasticsearch</java-module-name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>biomedcentral</id>
|
|
|
|
<name>BioMed Central Development Team</name>
|
|
|
|
<timezone>+0</timezone>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>cstrobl</id>
|
|
|
|
<name>Christoph Strobl</name>
|
|
|
|
<email>cstrobl at pivotal.io</email>
|
|
|
|
<organization>Pivotal</organization>
|
2019-03-19 11:04:32 -07:00
|
|
|
<organizationUrl>https://www.pivotal.io</organizationUrl>
|
2018-11-20 09:44:59 +01:00
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>mpaluch</id>
|
|
|
|
<name>Mark Paluch</name>
|
|
|
|
<email>mpaluch at pivotal.io</email>
|
|
|
|
<organization>Pivotal</organization>
|
2019-03-19 11:04:32 -07:00
|
|
|
<organizationUrl>https://www.pivotal.io</organizationUrl>
|
2018-11-20 09:44:59 +01:00
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/spring-projects/spring-data-elasticsearch</url>
|
|
|
|
<connection>scm:git:git://github.com/spring-projects/spring-data-elasticsearch.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-data-elasticsearch.git
|
|
|
|
</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<ciManagement>
|
|
|
|
<system>Bamboo</system>
|
|
|
|
<url>https://build.spring.io/browse/SPRINGDATAES</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>JIRA</system>
|
|
|
|
<url>https://jira.spring.io/browse/DATAES</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
2019-09-04 12:13:01 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-bom</artifactId>
|
|
|
|
<version>${netty}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2018-11-20 09:44:59 +01:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- Spring -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- SPRING DATA -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-commons</artifactId>
|
|
|
|
<version>${springdata.commons}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Reactive Infrastructure -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webflux</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
|
|
<artifactId>reactor-netty</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor</groupId>
|
|
|
|
<artifactId>reactor-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- APACHE -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>${commonslang}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- JODA Time -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>${jodatime}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Elasticsearch -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
<artifactId>transport</artifactId>
|
|
|
|
<version>${elasticsearch}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<!-- required by elasticsearch -->
|
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
|
|
|
<artifactId>transport-netty4-client</artifactId>
|
|
|
|
<version>${elasticsearch}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
|
|
<version>${elasticsearch}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
<version>${slf4j}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<version>${log4j}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Jackson JSON Mapper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- CDI -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.enterprise</groupId>
|
|
|
|
<artifactId>cdi-api</artifactId>
|
|
|
|
<version>${cdi}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openwebbeans.test</groupId>
|
|
|
|
<artifactId>cditest-owb</artifactId>
|
|
|
|
<version>1.2.8</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jcdi_1.0_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-atinject_1.0_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2019-04-25 21:50:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.skyscreamer</groupId>
|
|
|
|
<artifactId>jsonassert</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2019-11-30 23:30:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.tomakehurst</groupId>
|
|
|
|
<artifactId>wiremock-jre8</artifactId>
|
|
|
|
<version>2.25.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<!-- these exclusions are needed because of Elasticsearch JarHell-->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2018-11-20 09:44:59 +01:00
|
|
|
<!-- Upgrade xbean to 4.5 to prevent incompatibilities due to ASM versions -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>xbean-asm5-shaded</artifactId>
|
|
|
|
<version>4.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
2019-11-30 23:30:59 +01:00
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.1.0</version>
|
2018-11-20 09:44:59 +01:00
|
|
|
<scope>test</scope>
|
2018-06-14 22:58:31 -07:00
|
|
|
</dependency>
|
|
|
|
|
2018-11-20 09:44:59 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!--
|
|
|
|
please do not remove this configuration for surefire - we need that to avoid issue with jar hell
|
|
|
|
-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useSystemClassLoader>true</useSystemClassLoader>
|
|
|
|
<useFile>false</useFile>
|
|
|
|
<includes>
|
|
|
|
<include>**/*Tests.java</include>
|
2020-04-04 16:14:45 +02:00
|
|
|
<include>**/*Test.java</include>
|
2018-11-20 09:44:59 +01:00
|
|
|
</includes>
|
2018-12-18 15:14:54 +01:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<es.set.netty.runtime.available.processors>false</es.set.netty.runtime.available.processors>
|
|
|
|
</systemPropertyVariables>
|
2018-11-20 09:44:59 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-10-01 08:38:48 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2018-11-20 09:44:59 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-12-11 10:48:56 +01:00
|
|
|
<profiles>
|
2019-06-18 10:36:49 +02:00
|
|
|
<profile>
|
|
|
|
|
|
|
|
<id>ci</id>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<checkstyleRules>
|
|
|
|
<module name="Checker">
|
|
|
|
|
|
|
|
<!-- Configure checker to use UTF-8 encoding -->
|
|
|
|
<property name="charset" value="UTF-8"/>
|
|
|
|
|
2019-08-05 15:35:05 +02:00
|
|
|
<module name="io.spring.nohttp.checkstyle.check.NoHttpCheck"/>
|
2019-06-18 10:36:49 +02:00
|
|
|
</module>
|
|
|
|
</checkstyleRules>
|
|
|
|
<includes>**/*</includes>
|
|
|
|
<excludes>.git/**/*,target/**/*,**/target/**/*,.idea/**/*,**/spring.schemas,**/*.svg,mvnw,mvnw.cmd,**/*.policy</excludes>
|
|
|
|
<sourceDirectories>./</sourceDirectories>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</profile>
|
|
|
|
|
2018-12-11 10:48:56 +01:00
|
|
|
</profiles>
|
|
|
|
|
2018-11-20 09:44:59 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2021-02-17 10:34:05 +01:00
|
|
|
<id>spring-libs-release</id>
|
|
|
|
<url>https://repo.spring.io/libs-release</url>
|
2018-11-20 09:44:59 +01:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-plugins-release</id>
|
|
|
|
<url>https://repo.spring.io/plugins-release</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2014-05-02 15:25:21 +02:00
|
|
|
|
|
|
|
</project>
|