2015-07-01 09:17:15 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2014-05-02 15:25:21 +02: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
2015-06-30 23:18:24 -07:00
|
|
|
<version>1.0.7.BUILD-SNAPSHOT</version>
|
2014-05-02 15:25:21 +02:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.data.build</groupId>
|
|
|
|
<artifactId>spring-data-parent</artifactId>
|
2015-07-01 09:17:15 +02:00
|
|
|
<version>1.4.7.BUILD-SNAPSHOT</version>
|
2014-05-02 15:25:21 +02:00
|
|
|
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>Spring Data Elasticsearch</name>
|
|
|
|
<description>Spring Data Implementation for Elasticsearch</description>
|
|
|
|
<url>https://github.com/spring-projects/spring-data-elasticsearch</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
|
|
<dist.key>DATAES</dist.key>
|
|
|
|
|
|
|
|
<commonscollections>3.2.1</commonscollections>
|
|
|
|
<commonslang>2.6</commonslang>
|
|
|
|
<elasticsearch>1.1.1</elasticsearch>
|
2015-07-01 09:17:15 +02:00
|
|
|
<springdata.commons>1.8.7.BUILD-SNAPSHOT</springdata.commons>
|
2014-05-02 15:25:21 +02:00
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<!-- APACHE -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>${commonslang}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<version>${commonscollections}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- JODA Time -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
<version>${jodatime}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Elasticsearch -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${elasticsearch}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Jackson JSON Mapper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
<version>${jackson}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson}</version>
|
|
|
|
</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>
|
|
|
|
<version>${spring}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openwebbeans.test</groupId>
|
|
|
|
<artifactId>cditest-owb</artifactId>
|
|
|
|
<version>${webbeans}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>3.0-alpha-1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>wagon-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>biomedcentral</id>
|
|
|
|
<name>BioMed Central Development Team</name>
|
|
|
|
<timezone>+0</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2015-07-01 09:17:15 +02:00
|
|
|
<id>spring-libs-snapshot</id>
|
|
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
2014-05-02 15:25:21 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-plugins-release</id>
|
|
|
|
<url>http://repo.spring.io/plugins-release</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<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>http://build.springsource.org/browse/SPRINGDATAES</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>JIRA</system>
|
|
|
|
<url>https://jira.springsource.org/browse/DATAES</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
</project>
|