123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?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</artifactId>
- <version>6.0</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <properties>
- <flowable.version>6.4.2</flowable.version>
- <liquibase.version>3.6.2</liquibase.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-core</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jeeplus</groupId>
- <artifactId>jeeplus-admin</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.3</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-spring-boot-starter-process-rest</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-rest</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-ui-modeler-rest</artifactId>
- <version>${flowable.version}</version>
- </dependency> -->
- <dependency>
- <groupId>org.liquibase</groupId>
- <artifactId>liquibase-core</artifactId>
- <version>${liquibase.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--流程设计器-->
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-ui-modeler-rest</artifactId>
- <version>${flowable.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-slf4j-impl</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.apache.logging.log4j</groupId>
- <artifactId>log4j-core</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.slf4j</groupId>
- <artifactId>jul-to-slf4j</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <directory>src/main/webapp</directory>
- </resource>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- <include>**/*.ftl</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- <excludes>
- <exclude>**/*.woff</exclude>
- <exclude>**/*.woff2</exclude>
- <exclude>**/*.ttf</exclude>
- </excludes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>false</filtering>
- <includes>
- <include>**/*.woff</include>
- <include>**/*.woff2</include>
- <include>**/*.ttf</include>
- </includes>
- </resource>
- </resources>
- </build>
- </project>
|