121 lines
4.7 KiB
XML
121 lines
4.7 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>
|
|
<artifactId>workflow-engine</artifactId>
|
|
<groupId>cn.axzo.workflow</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>workflow-engine-server</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>workflow-engine-server</name>
|
|
<properties>
|
|
<!-- <activiti.version>7.1.0.M6</activiti.version>-->
|
|
<flowable.version>6.7.2</flowable.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-web-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-spring-cloud-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-consumer-spring-cloud-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-processor-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!--mybatis-plus-->
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-mybatisplus-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!-- swagger-yapi -->
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-swagger-yapi-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!-- druid -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.axzo.framework</groupId>
|
|
<artifactId>axzo-logger-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-bpmn-model</artifactId>
|
|
<version>${flowable.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-json-converter</artifactId>
|
|
<version>${flowable.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter-basic</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter-actuator</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-bpmn-converter</artifactId>
|
|
<version>${flowable.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-engine</artifactId>
|
|
<version>6.7.2</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.activiti</groupId>-->
|
|
<!-- <artifactId>activiti-spring-boot-starter</artifactId>-->
|
|
<!-- <version>${activiti.version}</version>-->
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>de.odysseus.juel</groupId>-->
|
|
<!-- <artifactId>juel-api</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>de.odysseus.juel</groupId>-->
|
|
<!-- <artifactId>juel-spi</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>org.mybatis</groupId>-->
|
|
<!-- <artifactId>mybatis</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <artifactId>el-api</artifactId>-->
|
|
<!-- <groupId>javax.el</groupId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.activiti</groupId>-->
|
|
<!-- <artifactId>activiti-image-generator</artifactId>-->
|
|
<!-- <version>${activiti.version}</version>-->
|
|
<!-- </dependency>-->
|
|
</dependencies>
|
|
</project>
|