pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.aron</groupId>
  7. <artifactId>ifast</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <name>ifast</name>
  11. <description>Aron fast devolop framework, ifast.</description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>1.5.6.RELEASE</version>
  16. <relativePath />
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. <mybatis.version>1.3.1</mybatis.version>
  23. <mybatisplus.version>2.1.6</mybatisplus.version>
  24. <mybatisplus-spring-boot-starter.version>1.0.5</mybatisplus-spring-boot-starter.version>
  25. <velocity.version>1.7</velocity.version>
  26. <activiti.version>5.22.0</activiti.version>
  27. <weixin-java-mp.version>3.3.0</weixin-java-mp.version>
  28. <poi.version>3.14</poi.version>
  29. <qiniu.version>7.2.19</qiniu.version>
  30. <oltu.version>1.0.2</oltu.version>
  31. <jwt.version>0.6.0</jwt.version>
  32. <lombok.version>1.16.14</lombok.version>
  33. <docker.registry>127.0.0.1:5000</docker.registry>
  34. <spotify.version>0.4.10</spotify.version>
  35. </properties>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. <configuration>
  42. <executable>true</executable>
  43. <fork>true</fork>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. <repositories>
  49. <repository>
  50. <id>public</id>
  51. <name>aliyun nexus</name>
  52. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  53. <releases>
  54. <enabled>true</enabled>
  55. </releases>
  56. </repository>
  57. </repositories>
  58. <dependencies>
  59. <dependency>
  60. <groupId>com.qiniu</groupId>
  61. <artifactId>qiniu-java-sdk</artifactId>
  62. <version>${qiniu.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.projectlombok</groupId>
  66. <artifactId>lombok</artifactId>
  67. </dependency>
  68. <!-- poi S -->
  69. <dependency>
  70. <groupId>org.apache.poi</groupId>
  71. <artifactId>poi</artifactId>
  72. <version>${poi.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-ooxml</artifactId>
  77. <version>${poi.version}</version>
  78. </dependency>
  79. <!-- poi E -->
  80. <!-- weixin SDK S -->
  81. <dependency>
  82. <groupId>com.github.binarywang</groupId>
  83. <artifactId>weixin-java-mp</artifactId>
  84. <version>${weixin-java-mp.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.binarywang</groupId>
  88. <artifactId>weixin-java-miniapp</artifactId>
  89. <version>${weixin-java-mp.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.github.binarywang</groupId>
  93. <artifactId>weixin-java-pay</artifactId>
  94. <version>${weixin-java-mp.version}</version>
  95. </dependency>
  96. <!-- weixin SDK E -->
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-starter-test</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-aop</artifactId>
  109. </dependency>
  110. <!--web -->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-web</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>net.sourceforge.nekohtml</groupId>
  121. <artifactId>nekohtml</artifactId>
  122. </dependency>
  123. <!-- mybatis-plus S -->
  124. <dependency>
  125. <groupId>mysql</groupId>
  126. <artifactId>mysql-connector-java</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.mybatis.spring.boot</groupId>
  130. <artifactId>mybatis-spring-boot-starter</artifactId>
  131. <version>${mybatis.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.baomidou</groupId>
  135. <artifactId>mybatis-plus</artifactId>
  136. <version>${mybatisplus.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.baomidou</groupId>
  140. <artifactId>mybatisplus-spring-boot-starter</artifactId>
  141. <version>${mybatisplus-spring-boot-starter.version}</version>
  142. </dependency>
  143. <!-- mybatis-plus E -->
  144. <!--druid -->
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>druid</artifactId>
  148. <version>1.1.4</version>
  149. </dependency>
  150. <!--commons -->
  151. <dependency>
  152. <groupId>org.apache.commons</groupId>
  153. <artifactId>commons-lang3</artifactId>
  154. <version>3.6</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>commons-configuration</groupId>
  158. <artifactId>commons-configuration</artifactId>
  159. <version>1.10</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>commons-io</groupId>
  163. <artifactId>commons-io</artifactId>
  164. <version>2.5</version>
  165. </dependency>
  166. <!--shiro -->
  167. <dependency>
  168. <groupId>org.apache.shiro</groupId>
  169. <artifactId>shiro-core</artifactId>
  170. <version>1.3.2</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.shiro</groupId>
  174. <artifactId>shiro-spring</artifactId>
  175. <version>1.3.2</version>
  176. </dependency>
  177. <!-- jwt -->
  178. <dependency>
  179. <groupId>io.jsonwebtoken</groupId>
  180. <artifactId>jjwt</artifactId>
  181. <version>${jwt.version}</version>
  182. </dependency>
  183. <!-- shiro ehcache -->
  184. <dependency>
  185. <groupId>org.apache.shiro</groupId>
  186. <artifactId>shiro-ehcache</artifactId>
  187. <version>1.3.2</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.github.theborakompanioni</groupId>
  191. <artifactId>thymeleaf-extras-shiro</artifactId>
  192. <version>1.2.1</version>
  193. </dependency>
  194. <!--velocity代码生成使用模板 -->
  195. <dependency>
  196. <groupId>org.apache.velocity</groupId>
  197. <artifactId>velocity</artifactId>
  198. <version>1.7</version>
  199. </dependency>
  200. <!-- ehchache -->
  201. <dependency>
  202. <groupId>org.springframework.boot</groupId>
  203. <artifactId>spring-boot-starter-cache</artifactId>
  204. </dependency>
  205. <dependency>
  206. <groupId>net.sf.ehcache</groupId>
  207. <artifactId>ehcache</artifactId>
  208. </dependency>
  209. <!-- quartz -->
  210. <dependency>
  211. <groupId>org.quartz-scheduler</groupId>
  212. <artifactId>quartz</artifactId>
  213. <version>2.2.1</version>
  214. <exclusions>
  215. <exclusion>
  216. <artifactId>slf4j-api</artifactId>
  217. <groupId>org.slf4j</groupId>
  218. </exclusion>
  219. </exclusions>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.springframework</groupId>
  223. <artifactId>spring-context-support</artifactId>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.springframework.boot</groupId>
  227. <artifactId>spring-boot-devtools</artifactId>
  228. <optional>true</optional>
  229. </dependency>
  230. <!-- swagger -->
  231. <dependency>
  232. <groupId>io.springfox</groupId>
  233. <artifactId>springfox-swagger2</artifactId>
  234. <version>2.9.2</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>io.springfox</groupId>
  238. <artifactId>springfox-swagger-ui</artifactId>
  239. <version>2.9.2</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>com.github.xiaoymin</groupId>
  243. <artifactId>swagger-bootstrap-ui</artifactId>
  244. <version>1.9.3</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.jsoup</groupId>
  248. <artifactId>jsoup</artifactId>
  249. <version>1.9.2</version>
  250. </dependency>
  251. <!-- data-redis S -->
  252. <dependency>
  253. <groupId>org.springframework.boot</groupId>
  254. <artifactId>spring-boot-starter-data-redis</artifactId>
  255. </dependency>
  256. <!-- data-redis E -->
  257. <dependency>
  258. <groupId>com.auth0</groupId>
  259. <artifactId>java-jwt</artifactId>
  260. <version>3.2.0</version>
  261. </dependency>
  262. <!-- aliyun sdk -->
  263. <dependency>
  264. <groupId>com.aliyun.oss</groupId>
  265. <artifactId>aliyun-sdk-oss</artifactId>
  266. <version>2.7.0</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.aliyun</groupId>
  270. <artifactId>aliyun-java-sdk-core</artifactId>
  271. <version>3.2.8</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>com.aliyun</groupId>
  275. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  276. <version>1.1.0</version>
  277. </dependency>
  278. </dependencies>
  279. </project>