pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  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. <artifactId>fs</artifactId>
  7. <groupId>com.fs</groupId>
  8. <version>1.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>fs-service</artifactId>
  12. <description>
  13. service模块
  14. </description>
  15. <properties>
  16. <weixin-java-cp.version>4.7.0</weixin-java-cp.version>
  17. <weixin-java-miniapp.version>4.7.0</weixin-java-miniapp.version>
  18. <weixin-java-mp.version>4.7.0</weixin-java-mp.version>
  19. </properties>
  20. <dependencies>
  21. <!-- EasyExcel (阿里开源,处理大Excel内存友好) -->
  22. <dependency>
  23. <groupId>com.alibaba</groupId>
  24. <artifactId>easyexcel</artifactId>
  25. <version>3.3.2</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.jsoup</groupId>
  29. <artifactId>jsoup</artifactId>
  30. <version>1.17.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.jpush.api</groupId>
  34. <artifactId>jpush-client</artifactId>
  35. <version>3.4.3</version>
  36. </dependency>
  37. <!-- okhttp -->
  38. <dependency>
  39. <groupId>com.squareup.okhttp3</groupId>
  40. <artifactId>okhttp</artifactId>
  41. <version>4.9.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.jpush.api</groupId>
  45. <artifactId>jiguang-common</artifactId>
  46. <version>1.1.7</version>
  47. </dependency>
  48. <!-- 通用工具-->
  49. <dependency>
  50. <groupId>com.fs</groupId>
  51. <artifactId>fs-common</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.baidu.dev2</groupId>
  59. <artifactId>baiduads-sdk</artifactId>
  60. <version>2023.1.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.tzbank</groupId>
  64. <artifactId>tzbClient</artifactId>
  65. <version>1.0-SNAPSHOT</version>
  66. </dependency>
  67. <!--> google zxing <-->
  68. <dependency>
  69. <groupId>com.google.zxing</groupId>
  70. <artifactId>core</artifactId>
  71. <version>3.3.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.google.zxing</groupId>
  75. <artifactId>javase</artifactId>
  76. <version>3.3.0</version>
  77. </dependency>
  78. <!--> thumbnailator <-->
  79. <dependency>
  80. <groupId>net.coobird</groupId>
  81. <artifactId>thumbnailator</artifactId>
  82. <version>0.4.8</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.qcloud</groupId>
  86. <artifactId>cos-sts_api</artifactId>
  87. <version>3.1.1</version>
  88. </dependency>
  89. <!-- oss -->
  90. <dependency>
  91. <groupId>com.qiniu</groupId>
  92. <artifactId>qiniu-java-sdk</artifactId>
  93. <version>[7.2.0, 7.2.99]</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.aliyun.oss</groupId>
  97. <artifactId>aliyun-sdk-oss</artifactId>
  98. <version>3.5.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.qcloud</groupId>
  102. <artifactId>cos_api</artifactId>
  103. <version>5.6.3</version>
  104. <exclusions>
  105. <exclusion>
  106. <groupId>org.slf4j</groupId>
  107. <artifactId>slf4j-log4j12</artifactId>
  108. </exclusion>
  109. </exclusions>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.tencentcloudapi</groupId>
  113. <artifactId>tencentcloud-sdk-java</artifactId>
  114. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  115. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
  116. <version>3.1.322</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.hibernate.validator</groupId>
  120. <artifactId>hibernate-validator</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.github.binarywang</groupId>
  124. <artifactId>weixin-java-miniapp</artifactId>
  125. <version>4.7.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.github.binarywang</groupId>
  129. <artifactId>weixin-java-pay</artifactId>
  130. <version>4.7.2.B</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.github.binarywang</groupId>
  134. <artifactId>weixin-java-mp</artifactId>
  135. <version>${weixin-java-mp.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.github.binarywang</groupId>
  139. <artifactId>weixin-java-cp</artifactId>
  140. <version>${weixin-java-cp.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>io.swagger</groupId>
  144. <artifactId>swagger-annotations</artifactId>
  145. <version>1.5.21</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>io.swagger</groupId>
  149. <artifactId>swagger-models</artifactId>
  150. <version>1.5.21</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.vdurmont</groupId>
  154. <artifactId>emoji-java</artifactId>
  155. <version>4.0.0</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.github.tencentyun</groupId>
  159. <artifactId>tls-sig-api-v2</artifactId>
  160. <version>2.0</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.httpcomponents.client5</groupId>
  164. <artifactId>httpclient5</artifactId>
  165. <version>5.2.1</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.baidubce</groupId>
  169. <artifactId>appbuilder</artifactId>
  170. <version>0.6.0</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.springframework</groupId>
  174. <artifactId>spring-test</artifactId>
  175. <version>5.2.12.RELEASE</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.huaweicloud.sdk</groupId>
  179. <artifactId>huaweicloud-sdk-vod</artifactId>
  180. <version>3.1.103</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.huaweicloud.sdk</groupId>
  184. <artifactId>huaweicloud-sdk-mpc</artifactId>
  185. <version>3.1.88</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.huaweicloud.sdk</groupId>
  189. <artifactId>huaweicloud-sdk-cdn</artifactId>
  190. <version>3.1.54</version>
  191. </dependency>
  192. <!-- <dependency>-->
  193. <!-- <groupId>com.huaweicloud.sdk</groupId>-->
  194. <!-- <artifactId>huaweicloud-sdk-core</artifactId>-->
  195. <!-- <version>3.1.88</version>-->
  196. <!-- </dependency>-->
  197. <dependency>
  198. <groupId>com.huaweicloud</groupId>
  199. <artifactId>esdk-obs-java-bundle</artifactId>
  200. <version>3.23.9</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>ws.schild</groupId>
  204. <artifactId>jave-core</artifactId>
  205. <version>3.0.0</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>com.google.protobuf</groupId>
  209. <artifactId>protobuf-java</artifactId>
  210. <version>3.11.4</version>
  211. </dependency>
  212. <!-- <dependency>-->
  213. <!-- <groupId>org.redisson</groupId>-->
  214. <!-- <artifactId>redisson</artifactId>-->
  215. <!-- <version>3.13.6</version>-->
  216. <!-- </dependency>-->
  217. <dependency>
  218. <groupId>org.redisson</groupId>
  219. <artifactId>redisson-spring-boot-starter</artifactId>
  220. <version>3.13.6</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.rocketmq</groupId>
  224. <artifactId>rocketmq-spring-boot-starter</artifactId>
  225. <version>2.2.3</version>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.baomidou</groupId>
  229. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  230. <version>3.1.0</version>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.commons</groupId>
  234. <artifactId>commons-text</artifactId>
  235. <version>1.10.0</version>
  236. </dependency>
  237. <dependency>
  238. <groupId>com.github.wechatpay-apiv3</groupId>
  239. <artifactId>wechatpay-java</artifactId>
  240. <version>0.2.16</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>com.github.ben-manes.caffeine</groupId>
  244. <artifactId>caffeine</artifactId>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.mapstruct</groupId>
  248. <artifactId>mapstruct</artifactId>
  249. <version>${org.mapstruct.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.mapstruct</groupId>
  253. <artifactId>mapstruct-processor</artifactId>
  254. <version>${org.mapstruct.version}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>org.mapstruct</groupId>
  258. <artifactId>mapstruct</artifactId>
  259. <version>${org.mapstruct.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.mapstruct</groupId>
  263. <artifactId>mapstruct-processor</artifactId>
  264. <version>${org.mapstruct.version}</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>com.hc</groupId>
  268. <artifactId>openapi</artifactId>
  269. <version>1.0</version>
  270. </dependency>
  271. <!-- 移动云ECS SDK -->
  272. <dependency>
  273. <groupId>com.ecloud.sdk</groupId>
  274. <artifactId>ecloud-sdk-ecs</artifactId>
  275. <version>1.1.26</version>
  276. </dependency>
  277. <!--火山云sdk-->
  278. <dependency>
  279. <groupId>com.volcengine</groupId>
  280. <artifactId>volc-sdk-java</artifactId>
  281. <version>1.0.250</version>
  282. </dependency>
  283. </dependencies>
  284. </project>