pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <!--<parent>-->
  6. <!--<groupId>org.springframework.boot</groupId>-->
  7. <!--<artifactId>spring-boot-starter-parent</artifactId>-->
  8. <!--<version>2.1.5.RELEASE</version>-->
  9. <!--<relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;-->
  10. <!--</parent>-->
  11. <parent>
  12. <artifactId>fframwork</artifactId>
  13. <groupId>com.tofly</groupId>
  14. <version>1.0-SNAPSHOT</version>
  15. </parent>
  16. <groupId>com.tofly</groupId>
  17. <artifactId>tofly-flowable</artifactId>
  18. <version>0.0.1-SNAPSHOT</version>
  19. <name>flowable</name>
  20. <description>Demo project for Spring Boot</description>
  21. <properties>
  22. <java.version>1.8</java.version>
  23. <flowable.version>6.4.1</flowable.version>
  24. <mybatis-spring-boot>1.3.1</mybatis-spring-boot>
  25. </properties>
  26. <dependencies>
  27. <!--flowable工作流依赖-->
  28. <dependency>
  29. <groupId>org.flowable</groupId>
  30. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  31. <version>${flowable.version}</version>
  32. </dependency>
  33. <!--mysql依赖-->
  34. <!--<dependency>-->
  35. <!--<groupId>mysql</groupId>-->
  36. <!--<artifactId>mysql-connector-java</artifactId>-->
  37. <!--<version>8.0.11</version>-->
  38. <!--</dependency>-->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.flowable</groupId>
  45. <artifactId>flowable-ui-common</artifactId>
  46. <version>${flowable.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.flowable</groupId>
  50. <artifactId>flowable-ui-modeler-rest</artifactId>
  51. <version>${flowable.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.flowable</groupId>
  55. <artifactId>flowable-idm-spring-configurator</artifactId>
  56. <version>${flowable.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.flowable</groupId>
  60. <artifactId>flowable-ui-idm-rest</artifactId>
  61. <version>${flowable.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.flowable</groupId>
  65. <artifactId>flowable-form-engine</artifactId>
  66. <version>${flowable.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.flowable</groupId>
  70. <artifactId>flowable-form-engine-configurator</artifactId>
  71. <version>${flowable.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.flowable</groupId>
  75. <artifactId>flowable-form-spring-configurator</artifactId>
  76. <version>6.4.1</version>
  77. </dependency>
  78. <!--<dependency>-->
  79. <!--<groupId>org.flowable</groupId>-->
  80. <!--<artifactId>flowable-ui-idm-conf</artifactId>-->
  81. <!--<version>${flowable.version}</version>-->
  82. <!--</dependency>-->
  83. <dependency>
  84. <groupId>org.liquibase</groupId>
  85. <artifactId>liquibase-core</artifactId>
  86. <version>3.6.2</version>
  87. </dependency>
  88. <!--security -->
  89. <!--<dependency>-->
  90. <!--<groupId>org.springframework.security</groupId>-->
  91. <!--<artifactId>spring-security-core</artifactId>-->
  92. <!--</dependency>-->
  93. <!--<dependency>-->
  94. <!--<groupId>org.springframework.security</groupId>-->
  95. <!--<artifactId>spring-security-config</artifactId>-->
  96. <!--</dependency>-->
  97. <!--<dependency>-->
  98. <!--<groupId>org.springframework.security</groupId>-->
  99. <!--<artifactId>spring-security-crypto</artifactId>-->
  100. <!--</dependency>-->
  101. <!--<dependency>-->
  102. <!--<groupId>org.springframework.security</groupId>-->
  103. <!--<artifactId>spring-security-web</artifactId>-->
  104. <!--</dependency>-->
  105. <!-- Servlet -->
  106. <dependency>
  107. <groupId>javax.servlet</groupId>
  108. <artifactId>javax.servlet-api</artifactId>
  109. <scope>provided</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>net.sf.jasperreports</groupId>
  113. <artifactId>jasperreports</artifactId>
  114. <version>6.6.0</version>
  115. <exclusions>
  116. <exclusion>
  117. <groupId>com.lowagie</groupId>
  118. <artifactId>itext</artifactId>
  119. </exclusion>
  120. </exclusions>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.lowagie</groupId>
  124. <artifactId>itext</artifactId>
  125. <version>2.1.7</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.codehaus.groovy</groupId>
  129. <artifactId>groovy-all</artifactId>
  130. <version>2.4.13</version>
  131. </dependency>
  132. <!--<dependency>-->
  133. <!--<groupId>com.itextpdf</groupId>-->
  134. <!--<artifactId>itextpdf</artifactId>-->
  135. <!--<version>5.5.13.1</version>-->
  136. <!--</dependency>-->
  137. <dependency>
  138. <groupId>com.tofly</groupId>
  139. <artifactId>itextAsian</artifactId>
  140. <version>1.0.0-SNAPSHOT</version>
  141. <scope>system</scope>
  142. <systemPath>${project.basedir}/src/main/resources/lib/iTextAsian.jar</systemPath>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.tofly</groupId>
  146. <artifactId>common-log</artifactId>
  147. <version>1.0-SNAPSHOT</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.tofly</groupId>
  151. <artifactId>common-oauth</artifactId>
  152. <version>1.0-SNAPSHOT</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.cloud</groupId>
  156. <artifactId>spring-cloud-starter-config</artifactId>
  157. </dependency>
  158. <!--web 模块-->
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-starter-web</artifactId>
  162. <exclusions>
  163. <!--排除tomcat依赖-->
  164. <exclusion>
  165. <artifactId>spring-boot-starter-tomcat</artifactId>
  166. <groupId>org.springframework.boot</groupId>
  167. </exclusion>
  168. </exclusions>
  169. </dependency>
  170. <!--undertow容器,经测验,undertow比tomct性能更好-->
  171. <dependency>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-starter-undertow</artifactId>
  174. </dependency>
  175. <!-- SpringBoot集成mybatis框架 -->
  176. <dependency>
  177. <groupId>org.mybatis.spring.boot</groupId>
  178. <artifactId>mybatis-spring-boot-starter</artifactId>
  179. <version>${mybatis-spring-boot}</version>
  180. </dependency>
  181. <!--<dependency>-->
  182. <!--<groupId>com.oracle</groupId>-->
  183. <!--<artifactId>ojdbc6</artifactId>-->
  184. <!--<version>11.2.0.4.0-atlassian-hosted</version>-->
  185. <!--</dependency>-->
  186. <!--<dependency>-->
  187. <!--<groupId>org.springframework.boot</groupId>-->
  188. <!--<artifactId>spring-boot-devtools</artifactId>-->
  189. <!--<scope>runtime</scope>-->
  190. <!--</dependency>-->
  191. </dependencies>
  192. <build>
  193. <plugins>
  194. <plugin>
  195. <groupId>org.springframework.boot</groupId>
  196. <artifactId>spring-boot-maven-plugin</artifactId>
  197. <executions>
  198. <execution>
  199. <goals>
  200. <goal>repackage</goal>
  201. </goals>
  202. </execution>
  203. </executions>
  204. </plugin>
  205. </plugins>
  206. </build>
  207. </project>