pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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. <parent>
  5. <groupId>com.rrtx</groupId>
  6. <artifactId>fap-starter-parent</artifactId>
  7. <version>2.2-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.rrtx</groupId>
  11. <artifactId>dwServices</artifactId>
  12. <version>1.0</version>
  13. <name>services</name>
  14. <description>services</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <swagger.ui>2.9.2</swagger.ui>
  20. </properties>
  21. <dependencies>
  22. <!-- Spring系列 -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-aop</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-redis</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>io.lettuce</groupId>
  41. <artifactId>lettuce-core</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-cache</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-configuration-processor</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-actuator</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-actuator</artifactId>
  61. </dependency>
  62. <!-- MyBatis增强插件 -->
  63. <dependency>
  64. <groupId>com.rrtx</groupId>
  65. <artifactId>fap-starter-mybatis-plus</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.rrtx</groupId>
  69. <artifactId>fap-starter-translate</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.mapstruct</groupId>
  73. <artifactId>mapstruct-jdk8</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.mapstruct</groupId>
  77. <artifactId>mapstruct-processor</artifactId>
  78. </dependency>
  79. <!-- freemaker模板引擎,用于定义代码生成模板 -->
  80. <dependency>
  81. <groupId>org.freemarker</groupId>
  82. <artifactId>freemarker</artifactId>
  83. <version>2.3.28</version>
  84. </dependency>
  85. <!-- 控制台 SQL日志打印插件 -->
  86. <dependency>
  87. <groupId>p6spy</groupId>
  88. <artifactId>p6spy</artifactId>
  89. <version>3.8.1</version>
  90. </dependency>
  91. <!-- mysql驱动 -->
  92. <dependency>
  93. <groupId>mysql</groupId>
  94. <artifactId>mysql-connector-java</artifactId>
  95. <scope>runtime</scope>
  96. </dependency>
  97. <!--orcale数据库依赖-->
  98. <dependency>
  99. <groupId>com.oracle</groupId>
  100. <artifactId>ojdbc6</artifactId>
  101. <version>11.2.0.3</version>
  102. </dependency>
  103. <!-- shiro -->
  104. <dependency>
  105. <groupId>org.apache.shiro</groupId>
  106. <artifactId>shiro-spring</artifactId>
  107. <version>1.4.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.crazycake</groupId>
  111. <artifactId>shiro-redis</artifactId>
  112. <version>3.2.2</version>
  113. <exclusions>
  114. <exclusion>
  115. <groupId>com.puppycrawl.tools</groupId>
  116. <artifactId>checkstyle</artifactId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.github.theborakompanioni</groupId>
  122. <artifactId>thymeleaf-extras-shiro</artifactId>
  123. <version>2.0.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-pool2</artifactId>
  128. <version>2.6.1</version>
  129. </dependency>
  130. <!-- IP定位插件 -->
  131. <dependency>
  132. <groupId>org.lionsoul</groupId>
  133. <artifactId>ip2region</artifactId>
  134. <version>1.7</version>
  135. </dependency>
  136. <!-- commons工具 -->
  137. <dependency>
  138. <groupId>org.apache.commons</groupId>
  139. <artifactId>commons-lang3</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-io</groupId>
  143. <artifactId>commons-io</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-net</groupId>
  147. <artifactId>commons-net</artifactId>
  148. <version>3.0.1</version>
  149. </dependency>
  150. <!-- google guava -->
  151. <dependency>
  152. <groupId>com.google.guava</groupId>
  153. <artifactId>guava</artifactId>
  154. <version>25.1-jre</version>
  155. </dependency>
  156. <!-- Excel导入导出插件 -->
  157. <dependency>
  158. <groupId>com.wuwenze</groupId>
  159. <artifactId>ExcelKit</artifactId>
  160. <version>2.0.71</version>
  161. </dependency>
  162. <!-- lombok -->
  163. <dependency>
  164. <groupId>org.projectlombok</groupId>
  165. <artifactId>lombok</artifactId>
  166. </dependency>
  167. <!-- fastjson -->
  168. <dependency>
  169. <groupId>com.alibaba</groupId>
  170. <artifactId>fastjson</artifactId>
  171. </dependency>
  172. <!-- 验证码生成插件 -->
  173. <dependency>
  174. <groupId>com.github.whvcse</groupId>
  175. <artifactId>EasyCaptcha</artifactId>
  176. <version>1.5.0</version>
  177. </dependency>
  178. <!-- xss过滤 -->
  179. <dependency>
  180. <groupId>org.jsoup</groupId>
  181. <artifactId>jsoup</artifactId>
  182. <version>1.9.2</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>io.springfox</groupId>
  186. <artifactId>springfox-swagger2</artifactId>
  187. <version>${swagger.ui}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>io.springfox</groupId>
  191. <artifactId>springfox-swagger-ui</artifactId>
  192. <version>${swagger.ui}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>com.rrtx</groupId>
  196. <artifactId>fap-starter-genid</artifactId>
  197. </dependency>
  198. <!-- 无需重启 自动编译 -->
  199. <!-- 密码信封使用 开始 -->
  200. <dependency>
  201. <groupId>org.json</groupId>
  202. <artifactId>json</artifactId>
  203. <version>20160810</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>commons-lang</groupId>
  207. <artifactId>commons-lang</artifactId>
  208. <version>2.5</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.bouncycastle</groupId>
  212. <artifactId>bcprov-jdk16</artifactId>
  213. <version>1.46</version>
  214. </dependency>
  215. <!-- 密码信封使用 结束 -->
  216. <dependency>
  217. <groupId>com.minpay</groupId>
  218. <artifactId>minencryptcbc</artifactId>
  219. <version>1.0.0</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.apache.httpcomponents</groupId>
  223. <artifactId>httpmime</artifactId>
  224. <version>4.3.5</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.apache.httpcomponents</groupId>
  228. <artifactId>httpclient</artifactId>
  229. <version>4.3.5</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>junit</groupId>
  233. <artifactId>junit</artifactId>
  234. <scope>test</scope>
  235. </dependency>
  236. <dependency>
  237. <groupId>org.springframework.boot</groupId>
  238. <artifactId>spring-boot-starter-test</artifactId>
  239. <scope>test</scope>
  240. </dependency>
  241. <dependency>
  242. <groupId>net.sf.json-lib</groupId>
  243. <artifactId>json-lib</artifactId>
  244. <version>2.4</version>
  245. <classifier>jdk15</classifier>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.jdom</groupId>
  249. <artifactId>jdom</artifactId>
  250. <version>1.1.3</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>com.github.xiaoymin</groupId>
  254. <artifactId>swagger-bootstrap-ui</artifactId>
  255. <version>1.9.6</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>com.auth0</groupId>
  259. <artifactId>java-jwt</artifactId>
  260. <version>3.2.0</version>
  261. </dependency>
  262. <!-- 微信支付用到包 开始 -->
  263. <dependency>
  264. <groupId>org.jdom</groupId>
  265. <artifactId>jdom</artifactId>
  266. <version>1.1.3</version>
  267. </dependency>
  268. <!-- 微信支付用到包 结束 -->
  269. </dependencies>
  270. <repositories>
  271. <repository>
  272. <id>EasyCaptcha repository</id>
  273. <url>https://repository.mulesoft.org/nexus/content/repositories/public/</url>
  274. </repository>
  275. </repositories>
  276. <build>
  277. <plugins>
  278. <plugin>
  279. <groupId>org.springframework.boot</groupId>
  280. <artifactId>spring-boot-maven-plugin</artifactId>
  281. <configuration>
  282. <includeSystemScope>true</includeSystemScope>
  283. </configuration>
  284. <executions>
  285. <execution>
  286. <goals>
  287. <goal>repackage</goal>
  288. </goals>
  289. </execution>
  290. </executions>
  291. </plugin>
  292. <plugin>
  293. <groupId>org.apache.maven.plugins</groupId>
  294. <artifactId>maven-compiler-plugin</artifactId>
  295. <version>3.6.2</version>
  296. <configuration>
  297. <source>1.8</source>
  298. <target>1.8</target>
  299. <annotationProcessorPaths>
  300. <path>
  301. <groupId>org.mapstruct</groupId>
  302. <artifactId>mapstruct-processor</artifactId>
  303. <version>${org.mapstruct.version}</version>
  304. </path>
  305. <path>
  306. <groupId>org.projectlombok</groupId>
  307. <artifactId>lombok</artifactId>
  308. <version>${lombok.version}</version>
  309. </path>
  310. </annotationProcessorPaths>
  311. </configuration>
  312. </plugin>
  313. </plugins>
  314. </build>
  315. </project>