66 lines
2.6 KiB
XML
66 lines
2.6 KiB
XML
<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>
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
|
<name>spring-data-elasticsearch</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-boot-3</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../../parent-boot-3</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-elasticsearch</artifactId>
|
|
<version>${spring-data-elasticsearch.version}</version>
|
|
</dependency>
|
|
<!--These two dependencies are inherited from spring-data-elasticsearch. Overriding to the newer version
|
|
will break tests. -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>co.elastic.clients</groupId>-->
|
|
<!-- <artifactId>elasticsearch-java</artifactId>-->
|
|
<!-- <version>${elasticsearch.version}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.fasterxml.jackson.core</groupId>-->
|
|
<!-- <artifactId>jackson-databind</artifactId>-->
|
|
<!-- <version>${jackson.version}</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- Here for backward compatibility-->
|
|
<dependency>
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
<version>7.17.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<spring-data-elasticsearch.version>5.1.2</spring-data-elasticsearch.version>
|
|
<elasticsearch.version>8.9.0</elasticsearch.version>
|
|
<jackson.version>2.16.0</jackson.version>
|
|
</properties>
|
|
|
|
</project> |