pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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. <parent>
  6. <groupId>com.tokheim</groupId>
  7. <artifactId>tms-middleware</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.tokheim</groupId>
  11. <version>1.0-SNAPSHOT</version>
  12. <modelVersion>4.0.0</modelVersion>
  13. <artifactId>middleware-server-jiangxi</artifactId>
  14. <dependencies>
  15. <!--spring-boot-starter-web-->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.junit.vintage</groupId>
  27. <artifactId>junit-vintage-engine</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!--&lt;!&ndash;接口文档swagger&ndash;&gt;
  32. <dependency>
  33. <groupId>io.springfox</groupId>
  34. <artifactId>springfox-swagger2</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.springfox</groupId>
  38. <artifactId>springfox-swagger-ui</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-bean-validators</artifactId>
  43. <version>2.4.0</version>
  44. </dependency>
  45. -->
  46. <!--swagger增强UI-->
  47. <!-- <dependency>
  48. <groupId>com.github.xiaoymin</groupId>
  49. <artifactId>swagger-bootstrap-ui</artifactId>
  50. <version>1.9.5</version>
  51. </dependency>-->
  52. <!--注意:knife4j 不能和 swagger-bootstrap-ui 共同使用,会否则冲突-->
  53. <!--knife4j knife 匕首-->
  54. <dependency>
  55. <groupId>com.github.xiaoymin</groupId>
  56. <artifactId>knife4j-spring-boot-starter</artifactId>
  57. <!--在引用时请在maven中央仓库搜索最新版本号-->
  58. <version>2.0.2</version>
  59. </dependency>
  60. <!-- 引入SpringBoot swagger2 起步依赖包 -->
  61. <dependency>
  62. <groupId>com.spring4all</groupId>
  63. <artifactId>swagger-spring-boot-starter</artifactId>
  64. </dependency>
  65. <!--lombok-->
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <scope>provided</scope>
  70. </dependency>
  71. <!-- wxpay-sdk -->
  72. <dependency>
  73. <groupId>com.github.wxpay</groupId>
  74. <artifactId>wxpay-sdk</artifactId>
  75. <version>0.0.3</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.httpcomponents</groupId>
  79. <artifactId>httpclient</artifactId>
  80. </dependency>
  81. <!-- mybatis -->
  82. <!--<dependency>
  83. <groupId>org.mybatis</groupId>
  84. <artifactId>mybatis</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.mybatis</groupId>
  88. <artifactId>mybatis-spring</artifactId>
  89. </dependency>-->
  90. <!-- 通用Mapper -->
  91. <dependency>
  92. <groupId>tk.mybatis</groupId>
  93. <artifactId>mapper-spring-boot-starter</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.github.miemiedev</groupId>
  97. <artifactId>mybatis-paginator</artifactId>
  98. </dependency>
  99. <!-- mysql -->
  100. <dependency>
  101. <groupId>mysql</groupId>
  102. <artifactId>mysql-connector-java</artifactId>
  103. </dependency>
  104. <!-- druid连接池 -->
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>druid</artifactId>
  108. </dependency>
  109. <!--ali-fastjson-->
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>fastjson</artifactId>
  113. </dependency>
  114. <!--分页插件-->
  115. <dependency>
  116. <groupId>com.github.pagehelper</groupId>
  117. <artifactId>pagehelper</artifactId>
  118. </dependency>
  119. <!--mybatis-springboot-->
  120. <dependency>
  121. <groupId>org.mybatis.spring.boot</groupId>
  122. <artifactId>mybatis-spring-boot-starter</artifactId>
  123. </dependency>
  124. <!-- 文件上传组件 -->
  125. <!-- <dependency>
  126. <groupId>commons-fileupload</groupId>
  127. <artifactId>commons-fileupload</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.csource</groupId>
  131. <artifactId>fastdfs-client</artifactId>
  132. </dependency>-->
  133. <dependency>
  134. <groupId>net.oschina.zcx7878</groupId>
  135. <artifactId>fastdfs-client-java</artifactId>
  136. <version>1.27.0.0</version>
  137. </dependency>
  138. <!--spring securiy-->
  139. <!-- <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-starter-security</artifactId>
  142. </dependency>-->
  143. <!--token认证-->
  144. <!--<dependency>
  145. <groupId>org.springframework.security.oauth</groupId>
  146. <artifactId>spring-security-oauth2</artifactId>
  147. </dependency>-->
  148. <dependency>
  149. <groupId>io.jsonwebtoken</groupId>
  150. <artifactId>jjwt</artifactId>
  151. <version>0.9.0</version>
  152. </dependency>
  153. <!--ftp依赖-->
  154. <dependency>
  155. <groupId>commons-net</groupId>
  156. <artifactId>commons-net</artifactId>
  157. <version>3.6</version>
  158. </dependency>
  159. <!--redis -->
  160. <dependency>
  161. <groupId>org.springframework.boot</groupId>
  162. <artifactId>spring-boot-starter-data-redis</artifactId>
  163. </dependency>
  164. <!--redis client-->
  165. <dependency>
  166. <groupId>redis.clients</groupId>
  167. <artifactId>jedis</artifactId>
  168. </dependency>
  169. <dependency>
  170. <groupId>commons-lang</groupId>
  171. <artifactId>commons-lang</artifactId>
  172. <version>2.6</version>
  173. </dependency>
  174. <!--spring securiy-->
  175. <!-- <dependency>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-starter-security</artifactId>
  178. </dependency>-->
  179. <!--token认证-->
  180. <!-- <dependency>
  181. <groupId>org.springframework.security.oauth</groupId>
  182. <artifactId>spring-security-oauth2</artifactId>
  183. </dependency>-->
  184. <!--<dependency>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  187. </dependency>-->
  188. <!-- 加入httpClient依赖 -->
  189. <dependency>
  190. <groupId>commons-httpclient</groupId>
  191. <artifactId>commons-httpclient</artifactId>
  192. <version>3.1</version>
  193. </dependency>
  194. <!--阿里大于短信-->
  195. <dependency>
  196. <groupId>com.aliyun</groupId>
  197. <artifactId>aliyun-java-sdk-core</artifactId>
  198. <version>3.2.8</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.aliyun</groupId>
  202. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  203. <version>1.1.0</version>
  204. </dependency>
  205. <!--邮件-->
  206. <dependency >
  207. <groupId >com.sun.mail </groupId >
  208. <artifactId >javax.mail </artifactId >
  209. <version >1.5.4 </version >
  210. </dependency >
  211. <!--PDF 转 Word 文件-->
  212. <!--<dependency>
  213. <groupId>org.apache.pdfbox</groupId>
  214. <artifactId>pdfbox</artifactId>
  215. <version>2.0.4</version>
  216. </dependency>
  217. <dependency>
  218. <groupId>net.coobird</groupId>
  219. <artifactId>thumbnailator</artifactId>
  220. <version>0.4.8</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.poi</groupId>
  224. <artifactId>poi</artifactId>
  225. <version>3.9</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>org.apache.poi</groupId>
  229. <artifactId>poi-ooxml</artifactId>
  230. <version>3.9</version>
  231. </dependency>-->
  232. <!--常用工具类 -->
  233. <dependency>
  234. <groupId>org.apache.commons</groupId>
  235. <artifactId>commons-lang3</artifactId>
  236. <version>3.8.1</version>
  237. </dependency>
  238. <!--接口文档swagger-->
  239. <dependency>
  240. <groupId>io.springfox</groupId>
  241. <artifactId>springfox-swagger2</artifactId>
  242. <version>2.9.2</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>io.springfox</groupId>
  246. <artifactId>springfox-swagger-ui</artifactId>
  247. <version>2.9.2</version>
  248. </dependency>
  249. </dependencies>
  250. <build>
  251. <plugins>
  252. <plugin>
  253. <groupId>org.apache.maven.plugins</groupId>
  254. <artifactId>maven-compiler-plugin</artifactId>
  255. <configuration>
  256. <source>1.8</source>
  257. <target>1.8</target>
  258. </configuration>
  259. </plugin>
  260. <plugin>
  261. <groupId>org.springframework.boot</groupId>
  262. <artifactId>spring-boot-maven-plugin</artifactId>
  263. <executions>
  264. <execution>
  265. <goals>
  266. <goal>repackage</goal>
  267. </goals>
  268. </execution>
  269. </executions>
  270. </plugin>
  271. </plugins>
  272. </build>
  273. </project>