mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 05:12:07 +08:00
70 lines
2.4 KiB
XML
70 lines
2.4 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.cf.imes</groupId>
|
||
|
|
<artifactId>cf-framework</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<artifactId>cf-spring-boot-starter-elasticsearch</artifactId>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<elasticsearch.version>8.8.1</elasticsearch.version>
|
||
|
|
<jakarta-json.version>2.1.1</jakarta-json.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.cf.imes</groupId>
|
||
|
|
<artifactId>cf-common</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<!-- Spring 核心 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>jakarta.annotation</groupId>
|
||
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>co.elastic.clients</groupId>
|
||
|
|
<artifactId>elasticsearch-java</artifactId>
|
||
|
|
<version>${elasticsearch.version}</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>jakarta.json</groupId>
|
||
|
|
<artifactId>jakarta.json-api</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.json</groupId>
|
||
|
|
<artifactId>jakarta.json-api</artifactId>
|
||
|
|
<version>${jakarta-json.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
|
<artifactId>jackson-annotations</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.cf.imes</groupId>
|
||
|
|
<artifactId>cf-spring-boot-starter-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|