pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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.7.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.tofly</groupId>
  12. <artifactId>tofly-flowable</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>tofly-flowable</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <flowable.version>6.4.1</flowable.version>
  19. <druid.version>1.1.16</druid.version>
  20. <fastjson.version>1.2.47</fastjson.version>
  21. <jackson.modules>2.9.8</jackson.modules>
  22. <sqlhelper.version>3.1.0</sqlhelper.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-jdbc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <!--flowable工作流依赖-->
  34. <dependency>
  35. <groupId>org.flowable</groupId>
  36. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  37. <version>${flowable.version}</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>${flowable.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.liquibase</groupId>
  80. <artifactId>liquibase-core</artifactId>
  81. <version>3.6.3</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>javax.servlet</groupId>
  85. <artifactId>javax.servlet-api</artifactId>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>net.sf.jasperreports</groupId>
  90. <artifactId>jasperreports</artifactId>
  91. <version>6.6.0</version>
  92. <exclusions>
  93. <exclusion>
  94. <groupId>com.lowagie</groupId>
  95. <artifactId>itext</artifactId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.lowagie</groupId>
  101. <artifactId>itext</artifactId>
  102. <version>2.1.7</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.codehaus.groovy</groupId>
  106. <artifactId>groovy-all</artifactId>
  107. <version>2.4.13</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.tofly</groupId>
  111. <artifactId>itextAsian</artifactId>
  112. <version>1.0.0-SNAPSHOT</version>
  113. <scope>system</scope>
  114. <systemPath>${project.basedir}/src/main/resources/lib/iTextAsian.jar</systemPath>
  115. </dependency>
  116. <!--web 模块-->
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-web</artifactId>
  120. <exclusions>
  121. <!--排除tomcat依赖-->
  122. <exclusion>
  123. <artifactId>spring-boot-starter-tomcat</artifactId>
  124. <groupId>org.springframework.boot</groupId>
  125. </exclusion>
  126. </exclusions>
  127. </dependency>
  128. <!--undertow容器,经测验,undertow比tomct性能更好-->
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-undertow</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-security</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.security.oauth</groupId>
  139. <artifactId>spring-security-oauth2</artifactId>
  140. <version>2.3.6.RELEASE</version>
  141. </dependency>
  142. <!--swagger接口文档-->
  143. <dependency>
  144. <groupId>com.github.xiaoymin</groupId>
  145. <artifactId>knife4j-spring-boot-starter</artifactId>
  146. <version>2.0.3</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>io.springfox</groupId>
  150. <artifactId>springfox-swagger-ui</artifactId>
  151. <version>2.9.2</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>io.springfox</groupId>
  155. <artifactId>springfox-swagger2</artifactId>
  156. <version>2.9.2</version>
  157. <exclusions>
  158. <exclusion>
  159. <artifactId>swagger-annotations</artifactId>
  160. <groupId>io.swagger</groupId>
  161. </exclusion>
  162. <exclusion>
  163. <artifactId>swagger-models</artifactId>
  164. <groupId>io.swagger</groupId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>io.swagger</groupId>
  170. <artifactId>swagger-annotations</artifactId>
  171. <version>1.6.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>io.swagger</groupId>
  175. <artifactId>swagger-models</artifactId>
  176. <version>1.6.0</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.microsoft.sqlserver</groupId>
  180. <artifactId>mssql-jdbc</artifactId>
  181. <scope>runtime</scope>
  182. </dependency>
  183. <dependency>
  184. <groupId>mysql</groupId>
  185. <artifactId>mysql-connector-java</artifactId>
  186. <scope>runtime</scope>
  187. </dependency>
  188. <dependency>
  189. <groupId>com.oracle</groupId>
  190. <artifactId>ojdbc6</artifactId>
  191. <version>11.2.0.4.0-atlassian-hosted</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.projectlombok</groupId>
  195. <artifactId>lombok</artifactId>
  196. <optional>true</optional>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.alibaba</groupId>
  200. <artifactId>druid-spring-boot-starter</artifactId>
  201. <version>${druid.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.alibaba</groupId>
  205. <artifactId>fastjson</artifactId>
  206. <version>${fastjson.version}</version>
  207. </dependency>
  208. <!--jackson模块-->
  209. <dependency>
  210. <groupId>com.fasterxml.jackson.module</groupId>
  211. <artifactId>jackson-modules-java8</artifactId>
  212. <version>${jackson.modules}</version>
  213. <type>pom</type>
  214. <scope>import</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-starter-aop</artifactId>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.springframework.boot</groupId>
  222. <artifactId>spring-boot-configuration-processor</artifactId>
  223. <optional>true</optional>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.commons</groupId>
  227. <artifactId>commons-collections4</artifactId>
  228. <version>4.4</version>
  229. </dependency>
  230. <!-- excel工具 -->
  231. <dependency>
  232. <groupId>org.apache.poi</groupId>
  233. <artifactId>poi-ooxml</artifactId>
  234. <version>3.17</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>javax.servlet</groupId>
  238. <artifactId>javax.servlet-api</artifactId>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.springframework</groupId>
  242. <artifactId>spring-webmvc</artifactId>
  243. <scope>provided</scope>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.apache.commons</groupId>
  247. <artifactId>commons-pool2</artifactId>
  248. </dependency>
  249. <dependency>
  250. <groupId>commons-net</groupId>
  251. <artifactId>commons-net</artifactId>
  252. <version>3.3</version>
  253. </dependency>
  254. <dependency>
  255. <groupId>commons-beanutils</groupId>
  256. <artifactId>commons-beanutils</artifactId>
  257. <version>1.8.3</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>log4j</groupId>
  261. <artifactId>log4j</artifactId>
  262. <version>1.2.17</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.springframework.boot</groupId>
  266. <artifactId>spring-boot-starter-test</artifactId>
  267. <scope>test</scope>
  268. </dependency>
  269. <dependency>
  270. <groupId>org.mybatis</groupId>
  271. <artifactId>mybatis</artifactId>
  272. <version>3.4.6</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.mybatis.spring.boot</groupId>
  276. <artifactId>mybatis-spring-boot-starter</artifactId>
  277. <version>1.3.1</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.junit.jupiter</groupId>
  281. <artifactId>junit-jupiter</artifactId>
  282. <version>5.4.0</version>
  283. <scope>test</scope>
  284. </dependency>
  285. <dependency>
  286. <groupId>org.jetbrains</groupId>
  287. <artifactId>annotations</artifactId>
  288. <version>RELEASE</version>
  289. <scope>compile</scope>
  290. </dependency>
  291. <!--分页插件 pagehelper -->
  292. <dependency>
  293. <groupId>com.github.pagehelper</groupId>
  294. <artifactId>pagehelper-spring-boot-starter</artifactId>
  295. <version>1.2.5</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>com.github.ulisesbocchio</groupId>
  299. <artifactId>jasypt-spring-boot-starter</artifactId>
  300. <version>2.1.0</version>
  301. </dependency>
  302. </dependencies>
  303. <build>
  304. <plugins>
  305. <plugin>
  306. <groupId>org.springframework.boot</groupId>
  307. <artifactId>spring-boot-maven-plugin</artifactId>
  308. <executions>
  309. <execution>
  310. <goals>
  311. <goal>repackage</goal>
  312. </goals>
  313. </execution>
  314. </executions>
  315. </plugin>
  316. </plugins>
  317. </build>
  318. <repositories>
  319. <!--阿里云主仓库,代理了maven central和jcenter仓库-->
  320. <repository>
  321. <id>aliyun</id>
  322. <name>aliyun</name>
  323. <url>https://maven.aliyun.com/repository/public</url>
  324. <releases>
  325. <enabled>true</enabled>
  326. </releases>
  327. <snapshots>
  328. <enabled>false</enabled>
  329. </snapshots>
  330. </repository>
  331. <!--阿里云代理Spring 官方仓库-->
  332. <repository>
  333. <id>spring-milestones</id>
  334. <name>Spring Milestones</name>
  335. <url>https://maven.aliyun.com/repository/spring</url>
  336. <releases>
  337. <enabled>true</enabled>
  338. </releases>
  339. <snapshots>
  340. <enabled>false</enabled>
  341. </snapshots>
  342. </repository>
  343. </repositories>
  344. <pluginRepositories>
  345. <!--阿里云代理Spring 插件仓库-->
  346. <pluginRepository>
  347. <id>spring-plugin</id>
  348. <name>spring-plugin</name>
  349. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  350. <releases>
  351. <enabled>true</enabled>
  352. </releases>
  353. <snapshots>
  354. <enabled>false</enabled>
  355. </snapshots>
  356. </pluginRepository>
  357. </pluginRepositories>
  358. </project>