mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-06 09:09:13 +08:00
修复一处pr缺陷,该缺陷会导致自动挡模式下,text类型字段在项目重启时索引重复变更,影响系统效率. 当text字段类型配置fieldData=true或手动挡模式下即可解决,严重等级低
63 lines
2.2 KiB
XML
63 lines
2.2 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>pom</packaging>
|
|
|
|
<groupId>cn.easy-es</groupId>
|
|
<artifactId>easy-es</artifactId>
|
|
<version>1.0.1</version>
|
|
|
|
<name>easy-es</name>
|
|
<description>easy use for elastic search</description>
|
|
|
|
<modules>
|
|
<module>easy-es-parent</module>
|
|
<module>easy-es-sample</module>
|
|
<module>easy-es-test</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<junit.version>5.4.0</junit.version>
|
|
<spring-boot.version>2.6.10</spring-boot.version>
|
|
<commons-lang3>3.9</commons-lang3>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.easy-es</groupId>
|
|
<artifactId>easy-es-boot-starter</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
<version>${junit.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>${spring-boot.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|