49 lines
1.8 KiB
XML
49 lines
1.8 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>com.dkha</groupId>
|
||
|
<artifactId>dkha-commons</artifactId>
|
||
|
<version>3.0.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>dkha-commons-elasticsearch</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.elasticsearch</groupId>
|
||
|
<artifactId>elasticsearch</artifactId>
|
||
|
<version>6.8.10</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.elasticsearch.client</groupId>
|
||
|
<artifactId>transport</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-elasticsearch -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.data</groupId>
|
||
|
<artifactId>spring-data-elasticsearch</artifactId>
|
||
|
<version>3.2.8.RELEASE</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-high-level-client -->
|
||
|
<dependency>
|
||
|
<groupId>org.elasticsearch.client</groupId>
|
||
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
||
|
<version>6.8.10</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
</build>
|
||
|
|
||
|
</project>
|