You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
<?xml version="1.0"?> |
|
<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>org.springblade</groupId> |
|
<artifactId>BladeX-Biz</artifactId> |
|
<version>3.1.0.RELEASE</version> |
|
</parent> |
|
|
|
<artifactId>blade-service</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>${bladex.project.version}</version> |
|
<packaging>pom</packaging> |
|
<description>微服务集合</description> |
|
|
|
|
|
|
|
<modules> |
|
<!--工厂数据--> |
|
<module>logpm-factory</module> |
|
<!--基础平台--> |
|
<module>logpm-basic</module> |
|
<!--基础数据平台--> |
|
<module>logpm-basicdata</module> |
|
<!--干线运输--> |
|
<module>logpm-trunkline</module> |
|
<!--仓库管理--> |
|
<module>logpm-warehouse</module> |
|
<!--配送签收管理--> |
|
<module>logpm-distribution</module> |
|
<!--售后管理--> |
|
<module>logpm-aftersales</module> |
|
|
|
<!--数据统计+结算--> |
|
<module>logpm-statisticsdata</module> |
|
<!--老系统数据对接--> |
|
<module>logpm-old-project</module> |
|
</modules> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-biz-common</artifactId> |
|
<version>${bladex.project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-tenant</artifactId> |
|
<version>${bladex.project.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-api-crypto</artifactId> |
|
<version>${bladex.project.version}</version> |
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
</project>
|
|
|