123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- <?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>hsweb-system-workflow</artifactId>
- <groupId>org.hswebframework.web</groupId>
- <version>3.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>hsweb-system-workflow-flowable-modeler</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-authorization-api</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-commons-controller</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-system-workflow-flowable</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-ui-modeler-conf</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-ui-modeler-rest</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--<exclusions>-->
- <!--<!–<exclusion>–>-->
- <!--<!–<groupId>org.flowable</groupId>–>-->
- <!--<!–<artifactId>flowable-ui-modeler-logic</artifactId>–>-->
- <!--<!–</exclusion>–>-->
- <!--<exclusion>-->
- <!--<groupId>org.mybatis</groupId>-->
- <!--<artifactId>mybatis</artifactId>-->
- <!--</exclusion>-->
- <!--<exclusion>-->
- <!--<groupId>org.mybatis</groupId>-->
- <!--<artifactId>mybatis-spring</artifactId>-->
- <!--</exclusion>-->
- <!--<exclusion>-->
- <!--<groupId>org.springframework.security</groupId>-->
- <!--<artifactId>spring-security-core</artifactId>-->
- <!--</exclusion>-->
- <!--<exclusion>-->
- <!--<groupId>org.springframework.security</groupId>-->
- <!--<artifactId>spring-security-config</artifactId>-->
- <!--</exclusion>-->
- <!--<exclusion>-->
- <!--<groupId>org.springframework.security</groupId>-->
- <!--<artifactId>spring-security-crypto</artifactId>-->
- <!--</exclusion>-->
- <!--<exclusion>-->
- <!--<groupId>org.springframework.security</groupId>-->
- <!--<artifactId>spring-security-web</artifactId>-->
- <!--</exclusion>-->
- <!--</exclusions>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.hswebframework.web</groupId>-->
- <!--<artifactId>hsweb-spring-boot-starter</artifactId>-->
- <!--<version>${project.version}</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-commons-dao-mybatis</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-bpmn-model</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-bpmn-converter</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-json-converter</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-bpmn-layout</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-form-model</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-form-json-converter</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-dmn-model</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-dmn-xml-converter</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.flowable</groupId>-->
- <!--<artifactId>flowable-dmn-json-converter</artifactId>-->
- <!--<version>${flowable.version}</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid</artifactId>
- <version>1.0.26</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|