pom.xml 9.4 KB

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