88 lines
2.7 KiB
XML
88 lines
2.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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.jeeplus</groupId>
|
|
<artifactId>jeeplus-plugins</artifactId>
|
|
<version>9.0</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<flowable.version>7.0.1</flowable.version>
|
|
</properties>
|
|
|
|
|
|
<artifactId>jeeplus-flowable</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>jeeplus-flowable</name>
|
|
<description>bpm project for jeeplus</description>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.jeeplus</groupId>
|
|
<artifactId>jeeplus-admin</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeeplus</groupId>
|
|
<artifactId>jeeplus-form</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeeplus</groupId>
|
|
<artifactId>jeeplus-mail</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.5</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>javax.servlet</groupId>-->
|
|
<!-- <artifactId>javax.servlet-api</artifactId>-->
|
|
<!-- <version>4.0.1</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-bpmn-model</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
|
|
<!-- flowable json 转换 -->
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-json-converter</artifactId>
|
|
<version>6.8.0</version>
|
|
</dependency>
|
|
<!-- svg转png图片工具-->
|
|
<dependency>
|
|
<groupId>org.apache.xmlgraphics</groupId>
|
|
<artifactId>batik-all</artifactId>
|
|
<version>1.10</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>xalan</groupId>
|
|
<artifactId>xalan</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|