2019-10-31 21:43:47 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-12-05 09:56:52 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
|
|
|
<name>spring-data-elasticsearch</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-spring-5</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-spring-5</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2020-04-12 16:20:59 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
|
|
|
<version>${spring-data-elasticsearch.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<groupId>org.locationtech.spatial4j</groupId>
|
|
|
|
<artifactId>spatial4j</artifactId>
|
|
|
|
<version>${spatial4j.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<dependency>
|
2020-04-12 16:20:59 -04:00
|
|
|
<groupId>org.locationtech.jts</groupId>
|
|
|
|
<artifactId>jts-core</artifactId>
|
2020-04-29 21:23:48 -04:00
|
|
|
<version>1.15.0</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
<version>${jna.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2020-04-29 21:23:48 -04:00
|
|
|
<spring-data-elasticsearch.version>4.0.0.RC1</spring-data-elasticsearch.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<jna.version>4.5.2</jna.version>
|
|
|
|
<fastjson.version>1.2.47</fastjson.version>
|
2020-04-29 21:23:48 -04:00
|
|
|
<spatial4j.version>0.7</spatial4j.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<jts.version>1.13</jts.version>
|
|
|
|
</properties>
|
|
|
|
|
2020-04-29 21:23:48 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>repository.spring.milestone</id>
|
|
|
|
<name>Spring Milestone Repository</name>
|
|
|
|
<url>https://repo.spring.io/milestone</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
</project>
|