123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?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>
- <artifactId>fframwork</artifactId>
- <groupId>com.tofly</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <groupId>com.tofly</groupId>
- <artifactId>tofly-flowable</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>flowable</name>
- <description>Demo project for Spring Boot</description>
- <properties>
- <java.version>1.8</java.version>
- <flowable.version>6.4.1</flowable.version>
- <mybatis-spring-boot>1.3.1</mybatis-spring-boot>
- </properties>
- <dependencies>
-
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-spring-boot-starter-basic</artifactId>
- <version>${flowable.version}</version>
- </dependency>
-
-
-
-
-
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-thymeleaf</artifactId>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-ui-common</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.flowable</groupId>
- <artifactId>flowable-idm-spring-configurator</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-ui-idm-rest</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-form-engine</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-form-engine-configurator</artifactId>
- <version>${flowable.version}</version>
- </dependency>
- <dependency>
- <groupId>org.flowable</groupId>
- <artifactId>flowable-form-spring-configurator</artifactId>
- <version>6.4.1</version>
- </dependency>
-
-
-
-
-
- <dependency>
- <groupId>org.liquibase</groupId>
- <artifactId>liquibase-core</artifactId>
- <version>3.6.2</version>
- </dependency>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>net.sf.jasperreports</groupId>
- <artifactId>jasperreports</artifactId>
- <version>6.6.0</version>
- <exclusions>
- <exclusion>
- <groupId>com.lowagie</groupId>
- <artifactId>itext</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.lowagie</groupId>
- <artifactId>itext</artifactId>
- <version>2.1.7</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy-all</artifactId>
- <version>2.4.13</version>
- </dependency>
-
-
-
-
-
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>itextAsian</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/lib/iTextAsian.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-oauth</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-config</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <exclusions>
-
- <exclusion>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- <groupId>org.springframework.boot</groupId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${mybatis-spring-boot}</version>
- </dependency>
-
-
-
-
-
-
-
-
-
-
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|