pom.xml 11 KB

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