85 lines
3.1 KiB
XML
85 lines
3.1 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>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-bpm-dsc</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>zt-module-bpm-server-dsc</artifactId>
|
||
|
||
<name>${project.artifactId}</name>
|
||
<description>
|
||
bpm 包下,业务流程管理(Business Process Management),我们放工作流的功能,基于 Flowable 6 版本实现。
|
||
例如说:流程定义、表单配置、审核中心(我的申请、我的待办、我的已办)等等 </description>
|
||
|
||
<dependencies>
|
||
<!-- Spring Cloud 基础 -->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-spring-boot-starter-env</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 依赖服务 -->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-bpm-api</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-bpm-server</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-bpm-api-dsc</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-system-api</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-capital-api</artifactId>
|
||
<version>${business.capital.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-product-api</artifactId>
|
||
<version>${business.product.version}</version>
|
||
</dependency>
|
||
|
||
<!-- qms模块api-->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-qms-api</artifactId>
|
||
<version>${business.qms.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<!-- 设置构建的 jar 包名 -->
|
||
<finalName>${project.artifactId}</finalName>
|
||
<plugins>
|
||
<!-- 打包 -->
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|