46 lines
1.5 KiB
XML
46 lines
1.5 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">
|
||
|
|
<parent>
|
||
|
|
<artifactId>cpte-wms-service</artifactId>
|
||
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
||
|
|
<version>3.8.3</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>cpte-wms-api</artifactId>
|
||
|
|
<name>CPTE WMS API</name>
|
||
|
|
<description>WMS 微服务公共 API 模块</description>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- 引入基础核心模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
||
|
|
<artifactId>cpte-boot-base-core</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Web 依赖 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Feign 调用依赖(用于服务间调用) -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
|
|
<version>4.2.0</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Lombok -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|