pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <groupId>com.unis.springcloud</groupId>
  6. <artifactId>parent</artifactId>
  7. <version>0.0.4-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>parent</name>
  10. <description>springcloud parent project</description>
  11. <!-- <modules> <module>common</module> <module>business</module> </modules> -->
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
  17. <oracle.version>12.1.0.2.0</oracle.version>
  18. <mybatis.version>RELEASE</mybatis.version>
  19. <tk.mybatis.version>RELEASE</tk.mybatis.version>
  20. <pagehelper.version>RELEASE</pagehelper.version>
  21. <druid.version>1.1.10</druid.version>
  22. <fastjson.version>1.2.36</fastjson.version>
  23. <springfox-swagger2.version>2.9.2</springfox-swagger2.version>
  24. <springfox-swagger-ui.version>2.9.2</springfox-swagger-ui.version>
  25. <jjwt-root.version>0.9.0</jjwt-root.version>
  26. <springfox-swagger2.version>2.9.2</springfox-swagger2.version>
  27. <poi-ooxml.version>4.0.1</poi-ooxml.version>
  28. <poi.version>4.0.1</poi.version>
  29. <feign-form.version>3.2.2</feign-form.version>
  30. <feign-form-spring.version>3.2.2</feign-form-spring.version>
  31. <commons-beanutils.version>1.9.3</commons-beanutils.version>
  32. <validator.version>5.1.0.Final</validator.version>
  33. <org.aspectj.version>1.8.10</org.aspectj.version>
  34. <commons-fileupload.version>1.3.3</commons-fileupload.version>
  35. <flowable.version>6.4.1</flowable.version>
  36. </properties>
  37. <parent>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-parent</artifactId>
  40. <version>2.0.3.RELEASE</version>
  41. <relativePath /> <!-- lookup parent from repository -->
  42. </parent>
  43. <dependencyManagement>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.aspectj</groupId>
  47. <artifactId>aspectjrt</artifactId>
  48. <version>${org.aspectj.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.aspectj</groupId>
  52. <artifactId>aspectjweaver</artifactId>
  53. <version>${org.aspectj.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.hibernate</groupId>
  57. <artifactId>hibernate-validator</artifactId>
  58. <version>${validator.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.cloud</groupId>
  62. <artifactId>spring-cloud-dependencies</artifactId>
  63. <version>${spring-cloud.version}</version>
  64. <type>pom</type>
  65. <scope>import</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.easyproject</groupId>
  69. <artifactId>ojdbc7</artifactId>
  70. <version>${oracle.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mybatis.spring.boot</groupId>
  74. <artifactId>mybatis-spring-boot-starter</artifactId>
  75. <version>${mybatis.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>tk.mybatis</groupId>
  79. <artifactId>mapper-spring-boot-starter</artifactId>
  80. <version>${tk.mybatis.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>tk.mybatis</groupId>
  84. <artifactId>mapper-spring-boot-starter</artifactId>
  85. <version>${tk.mybatis.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.pagehelper</groupId>
  89. <artifactId>pagehelper-spring-boot-starter</artifactId>
  90. <version>${pagehelper.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.pagehelper</groupId>
  94. <artifactId>pagehelper-spring-boot-starter</artifactId>
  95. <version>${pagehelper.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid-spring-boot-starter</artifactId>
  100. <version>${druid.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid-spring-boot-starter</artifactId>
  105. <version>${druid.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>fastjson</artifactId>
  110. <version>${fastjson.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>io.springfox</groupId>
  114. <artifactId>springfox-swagger2</artifactId>
  115. <version>${springfox-swagger2.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>io.springfox</groupId>
  119. <artifactId>springfox-swagger-ui</artifactId>
  120. <version>${springfox-swagger-ui.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>io.jsonwebtoken</groupId>
  124. <artifactId>jjwt</artifactId>
  125. <version>${jjwt-root.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.poi</groupId>
  129. <artifactId>poi-ooxml</artifactId>
  130. <version>${poi-ooxml.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi</artifactId>
  135. <version>${poi.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>io.github.openfeign.form</groupId>
  139. <artifactId>feign-form-spring</artifactId>
  140. <version>${feign-form-spring.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.github.openfeign.form</groupId>
  144. <artifactId>feign-form</artifactId>
  145. <version>${feign-form.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>commons-beanutils</groupId>
  149. <artifactId>commons-beanutils</artifactId>
  150. <version>${commons-beanutils.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>commons-fileupload</groupId>
  154. <artifactId>commons-fileupload</artifactId>
  155. <version>${commons-fileupload.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.flowable</groupId>
  159. <artifactId>flowable-spring-boot-starter</artifactId>
  160. <version>${flowable.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.flowable</groupId>
  164. <artifactId>flowable-ui-modeler-conf</artifactId>
  165. <version>${flowable.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.flowable</groupId>
  169. <artifactId>flowable-ui-modeler-rest</artifactId>
  170. <version>${flowable.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.flowable</groupId>
  174. <artifactId>flowable-ui-modeler-logic</artifactId>
  175. <version>${flowable.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.flowable</groupId>
  179. <artifactId>flowable-spring-boot-starter-process</artifactId>
  180. <version>${flowable.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.flowable</groupId>
  184. <artifactId>flowable-idm-spring-configurator</artifactId>
  185. <version>${flowable.version}</version>
  186. </dependency>
  187. <!-- 兼容V5配置 -->
  188. <!-- <dependency>-->
  189. <!-- <groupId>org.flowable</groupId>-->
  190. <!-- <artifactId>flowable5-spring-compatibility</artifactId>-->
  191. <!-- <version>${flowable.version}</version>-->
  192. <!-- </dependency>-->
  193. <!--json解析器 -->
  194. <dependency>
  195. <groupId>org.flowable</groupId>
  196. <artifactId>flowable-json-converter</artifactId>
  197. <version>${flowable.version}</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>org.flowable</groupId>
  201. <artifactId>flowable-ui-common</artifactId>
  202. <version>${flowable.version}</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.flowable</groupId>
  206. <artifactId>flowable-rest</artifactId>
  207. <version>${flowable.version}</version>
  208. </dependency>
  209. </dependencies>
  210. </dependencyManagement>
  211. </project>