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.
106 lines
3.6 KiB
106 lines
3.6 KiB
<?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.2.0.RELEASE</version> |
|
</parent> |
|
<description>BladeX 微服务API集合</description> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>blade-service-api</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>3.2.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> |
|
<!--补丁系统--> |
|
<module>logpm-patch-api</module> |
|
<!-- 考核督察系统--> |
|
<module>logpm-supervise-api</module> |
|
|
|
<!-- 报表系统--> |
|
<module>logpm-report-api</module> |
|
<module>logpm-factory-data-api</module> |
|
<module>logpm-factory-data-base-api</module> |
|
<!-- 商家转化模块 --> |
|
<module>logpm-factory-data-zbom-api</module> |
|
|
|
<!--商家端 --> |
|
<module>logpm-business-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>
|
|
|