2021-03-09 11:40:21 +08:00
|
|
|
|
<?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>
|
|
|
|
|
|
|
|
|
|
<groupId>com.fanxb</groupId>
|
|
|
|
|
<artifactId>bookMarkService</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>common</module>
|
|
|
|
|
<module>business</module>
|
|
|
|
|
<module>web</module>
|
|
|
|
|
</modules>
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>11</java.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.1.6.RELEASE</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!--定义es版本号,因为spring-boot-start-parent中引入了es的依赖,会导致es的版本问题,无法正常使用high-level-client-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
|
<artifactId>elasticsearch-rest-high-level-client</artifactId>
|
|
|
|
|
<version>7.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
|
<version>7.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--<!– https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-client –>-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
|
<artifactId>elasticsearch-rest-client</artifactId>
|
|
|
|
|
<version>7.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|