41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<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>com.ahut</groupId>
|
|
<artifactId>ahut-review</artifactId>
|
|
<version>1.0</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>ahut-flowable-api</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>ahut-flowable-biz</name>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.ahut</groupId>
|
|
<artifactId>ahut-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- flowable 工作流-->
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
|
<!-- 排除flowable自带的权限认证 -->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-security</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|