|
|
|
<?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>BladeX-Biz</artifactId>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<version>3.1.0.RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
<description>BladeX 微服务API集合</description>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>blade-service-api</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<version>3.1.0.RELEASE</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<!--工厂数据-->
|
|
|
|
<module>logpm-factory-api</module>
|
|
|
|
<!--基础平台-->
|
|
|
|
<module>logpm-basic-api</module>
|
|
|
|
<!--基础数据平台-->
|
|
|
|
<module>logpm-basicdata-api</module>
|
|
|
|
<!--干线运输-->
|
|
|
|
<module>logpm-trunkline-api</module>
|
|
|
|
<!--仓库管理-->
|
|
|
|
<module>logpm-warehouse-api</module>
|
|
|
|
<!--配送签收管理-->
|
|
|
|
<module>logpm-distribution-api</module>
|
|
|
|
<!--售后管理 + 异常-->
|
|
|
|
<module>logpm-aftersales-api</module>
|
|
|
|
<!--数据统计+结算-->
|
|
|
|
<module>logpm-statisticsdata-api</module>
|
|
|
|
<!--老系统数据对接-->
|
|
|
|
<module>logpm-old-project-api</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-starter-mybatis</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-starter-tenant</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-core-auto</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-biz-common</artifactId>
|
|
|
|
<version>${bladex.project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|