48 lines
1.7 KiB
XML
48 lines
1.7 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.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-common</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<artifactId>xiaomayi-elasticsearch</artifactId>
|
||
|
||
<!-- 依赖声明 -->
|
||
<dependencies>
|
||
<!-- 核心类库 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-core</artifactId>
|
||
</dependency>
|
||
<!-- ES搜索引擎,要和es版本一致 -->
|
||
<dependency>
|
||
<groupId>co.elastic.clients</groupId>
|
||
<artifactId>elasticsearch-java</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.elasticsearch.client</groupId>
|
||
<artifactId>elasticsearch-rest-client</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-databind</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-annotations</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-core</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>jakarta.json</groupId>
|
||
<artifactId>jakarta.json-api</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |