pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ads.hsayi</groupId>
  6. <artifactId>hsayi_channels_api</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>hsayi_channels</name>
  10. <description>hsayi_channels project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.15.RELEASE</version>
  15. <relativePath/>
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <swagger.ui>2.9.2</swagger.ui>
  22. <easyexcel.version>2.2.3</easyexcel.version>
  23. <mybatis-plus.version>3.3.2</mybatis-plus.version>
  24. <pagehelper.version>1.2.3</pagehelper.version>
  25. <dynamic.datasource.boot.version>2.5.4</dynamic.datasource.boot.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.apache.pdfbox</groupId>
  30. <artifactId>pdfbox</artifactId>
  31. <version>2.0.23</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.itextpdf</groupId>
  35. <artifactId>itextpdf</artifactId>
  36. <version>5.5.13.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.itextpdf</groupId>
  40. <artifactId>itext-asian</artifactId>
  41. <version>5.2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.bouncycastle</groupId>
  45. <artifactId>bcprov-jdk15on</artifactId>
  46. <version>1.47</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.bouncycastle</groupId>
  50. <artifactId>bcmail-jdk15on</artifactId>
  51. <version>1.47</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.github.pagehelper</groupId>
  55. <artifactId>pagehelper-spring-boot-starter</artifactId>
  56. <version>${pagehelper.version}</version>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>org.mybatis</groupId>
  60. <artifactId>mybatis</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-extension</artifactId>
  67. <version>${mybatis-plus.version}</version>
  68. </dependency>
  69. <!-- commons -->
  70. <dependency>
  71. <groupId>org.apache.commons</groupId>
  72. <artifactId>commons-lang3</artifactId>
  73. <version>3.8.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-web</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-aop</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-test</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>cn.hutool</groupId>
  90. <artifactId>hutool-all</artifactId>
  91. <version>4.5.11</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.security</groupId>
  95. <artifactId>spring-security-crypto</artifactId>
  96. <version>5.3.3.RELEASE</version>
  97. <scope>compile</scope>
  98. </dependency>
  99. <!-- 添加 Scheduled 坐标 -->
  100. <!-- <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-quartz</artifactId>
  103. </dependency>-->
  104. <dependency><!-- 该依赖必加,里面有sping对schedule的支持 -->
  105. <groupId>org.springframework</groupId>
  106. <artifactId>spring-context-support</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-cache</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-devtools</artifactId>
  115. <optional>true</optional>
  116. </dependency>
  117. <dependency>
  118. <groupId>junit</groupId>
  119. <artifactId>junit</artifactId>
  120. <version>4.13.2</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>druid-spring-boot-starter</artifactId>
  125. <version>1.1.9</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.alibaba</groupId>
  129. <artifactId>druid</artifactId>
  130. <version>1.1.22</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-data-redis</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>redis.clients</groupId>
  138. <artifactId>jedis</artifactId>
  139. <version>2.9.0</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.alibaba</groupId>
  143. <artifactId>fastjson</artifactId>
  144. <version>1.2.76</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.projectlombok</groupId>
  148. <artifactId>lombok</artifactId>
  149. <version>1.16.14</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>commons-logging</groupId>
  153. <artifactId>commons-logging</artifactId>
  154. <version>1.0.4</version>
  155. </dependency>
  156. <!-- EXECL -->
  157. <dependency>
  158. <groupId>org.apache.poi</groupId>
  159. <artifactId>poi</artifactId>
  160. <version>3.17</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.poi</groupId>
  164. <artifactId>poi-ooxml</artifactId>
  165. <version>3.17</version>
  166. </dependency>
  167. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  168. <dependency>
  169. <groupId>org.apache.poi</groupId>
  170. <artifactId>poi-ooxml-schemas</artifactId>
  171. <version>3.17</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.alibaba</groupId>
  175. <artifactId>easyexcel</artifactId>
  176. <version>${easyexcel.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>mysql</groupId>
  180. <artifactId>mysql-connector-java</artifactId>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-starter-mail</artifactId>
  185. </dependency>
  186. <!--阿里云OSS-->
  187. <dependency>
  188. <groupId>com.aliyun.oss</groupId>
  189. <artifactId>aliyun-sdk-oss</artifactId>
  190. <version>2.8.3</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>commons-discovery</groupId>
  194. <artifactId>commons-discovery</artifactId>
  195. <version>0.2</version>
  196. <exclusions>
  197. <exclusion>
  198. <groupId>commons-logging</groupId>
  199. <artifactId>commons-logging</artifactId>
  200. </exclusion>
  201. </exclusions>
  202. </dependency>
  203. <!-- <dependency>-->
  204. <!-- <groupId>com.taobao.top</groupId>-->
  205. <!-- <artifactId>top-api-sdk-java</artifactId>-->
  206. <!-- <version>1.0</version>-->
  207. <!-- <scope>system</scope>-->
  208. <!-- <systemPath>${project.basedir}/src/main/resources/lib/taobao-sdk-java-auto_1479188381469-20200201.jar</systemPath>-->
  209. <!-- </dependency>-->
  210. <!-- swagger2 -->
  211. <dependency>
  212. <groupId>io.springfox</groupId>
  213. <artifactId>springfox-swagger2</artifactId>
  214. <version>${swagger.ui}</version>
  215. <exclusions>
  216. <exclusion>
  217. <groupId>io.swagger</groupId>
  218. <artifactId>swagger-models</artifactId>
  219. </exclusion>
  220. </exclusions>
  221. </dependency>
  222. <dependency>
  223. <groupId>io.springfox</groupId>
  224. <artifactId>springfox-swagger-ui</artifactId>
  225. <version>${swagger.ui}</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>io.swagger</groupId>
  229. <artifactId>swagger-models</artifactId>
  230. <version>1.5.22</version>
  231. <exclusions>
  232. <exclusion>
  233. <groupId>io.swagger</groupId>
  234. <artifactId>swagger-annotations</artifactId>
  235. </exclusion>
  236. </exclusions>
  237. </dependency>
  238. <dependency>
  239. <groupId>com.baomidou</groupId>
  240. <artifactId>mybatis-plus-boot-starter</artifactId>
  241. <version>${mybatis-plus.version}</version>
  242. </dependency>
  243. <!-- mybatis plus 代码生成器依赖 -->
  244. <dependency>
  245. <groupId>com.baomidou</groupId>
  246. <artifactId>mybatis-plus-generator</artifactId>
  247. <version>${mybatis-plus.version}</version>
  248. </dependency>
  249. <!-- 代码生成器模板 -->
  250. <dependency>
  251. <groupId>org.freemarker</groupId>
  252. <artifactId>freemarker</artifactId>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.aspectj</groupId>
  256. <artifactId>aspectjweaver</artifactId>
  257. <version>1.9.7</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.springframework.retry</groupId>
  261. <artifactId>spring-retry</artifactId>
  262. <version>1.3.1</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.apache.httpcomponents</groupId>
  266. <artifactId>httpclient</artifactId>
  267. <version>4.5.13</version>
  268. </dependency>
  269. </dependencies>
  270. <build>
  271. <plugins>
  272. <plugin>
  273. <groupId>org.springframework.boot</groupId>
  274. <artifactId>spring-boot-maven-plugin</artifactId>
  275. <configuration>
  276. <includeSystemScope>true</includeSystemScope>
  277. </configuration>
  278. </plugin>
  279. </plugins>
  280. <resources>
  281. <resource>
  282. <directory>src/main/resource/lib</directory>
  283. <targetPath>BOOT-INF/lib/</targetPath>
  284. <includes>
  285. <include>taobao-sdk-java-auto_1479188381469-20200201.jar</include>
  286. </includes>
  287. </resource>
  288. <resource>
  289. <directory>src/main/java</directory>
  290. <includes>
  291. <include>**/*.yml</include>
  292. <include>**/*.properties</include>
  293. <include>**/*.xml</include>
  294. </includes>
  295. <filtering>false</filtering>
  296. </resource>
  297. <resource>
  298. <directory>src/main/resources</directory>
  299. <includes>
  300. <include>**/*.yml</include>
  301. <include>**/*.properties</include>
  302. <include>**/*.xml</include>
  303. </includes>
  304. <filtering>false</filtering>
  305. </resource>
  306. </resources>
  307. </build>
  308. </project>