pom.xml 9.6 KB

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