103 lines
3.7 KiB
XML
103 lines
3.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">
|
|
<parent>
|
|
<artifactId>cpte-boot-parent</artifactId>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<version>3.8.3</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>cpte-wms-service</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>CPTE WMS Service</name>
|
|
<description>WMS 微服务模块</description>
|
|
|
|
<modules>
|
|
<module>cpte-wms-api</module>
|
|
<module>cpte-wms-basic-service</module>
|
|
<module>cpte-wms-schedule-service</module>
|
|
<module>cpte-wms-inbound-service</module>
|
|
<module>cpte-wms-outbound-service</module>
|
|
<module>cpte-wms-inventory-service</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<wms.service.version>3.8.3</wms.service.version>
|
|
<!-- Spring Cloud 版本 (与 Spring Boot 3.5.5 兼容) -->
|
|
<spring-cloud.version>2025.0.0</spring-cloud.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- Spring Cloud BOM (管理 Spring Cloud 相关依赖版本) -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring-cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<!-- WMS API 模块 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<artifactId>cpte-wms-api</artifactId>
|
|
<version>${wms.service.version}</version>
|
|
</dependency>
|
|
|
|
<!-- WMS 基础服务 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<artifactId>cpte-wms-basic-service</artifactId>
|
|
<version>${wms.service.version}</version>
|
|
</dependency>
|
|
|
|
<!-- WMS 调度服务 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<artifactId>cpte-wms-schedule-service</artifactId>
|
|
<version>${wms.service.version}</version>
|
|
</dependency>
|
|
|
|
<!-- WMS 入库服务 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<artifactId>cpte-wms-inbound-service</artifactId>
|
|
<version>${wms.service.version}</version>
|
|
</dependency>
|
|
|
|
<!-- WMS 出库服务 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<artifactId>cpte-wms-outbound-service</artifactId>
|
|
<version>${wms.service.version}</version>
|
|
</dependency>
|
|
|
|
<!-- WMS 库存服务 -->
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot3</groupId>
|
|
<artifactId>cpte-wms-inventory-service</artifactId>
|
|
<version>${wms.service.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<!-- 指定 JDK 编译版本 -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|