pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <properties>
  16. <weixin-java-cp.version>4.4.0</weixin-java-cp.version>
  17. <weixin-java-miniapp.version>4.4.0</weixin-java-miniapp.version>
  18. <weixin-java-cp.version>4.4.0</weixin-java-cp.version>
  19. <weixin-java-miniapp.version>4.4.0</weixin-java-miniapp.version>
  20. <weixin-java-mp.version>4.4.0</weixin-java-mp.version>
  21. </properties>
  22. <dependencies>
  23. <!-- 通用工具-->
  24. <dependency>
  25. <groupId>com.fs</groupId>
  26. <artifactId>fs-common</artifactId>
  27. </dependency>
  28. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-annotations</artifactId>
  32. <version>1.5.21</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.swagger</groupId>
  36. <artifactId>swagger-models</artifactId>
  37. <version>1.5.21</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>5.3.7</version>
  43. </dependency>
  44. <!-- oss -->
  45. <dependency>
  46. <groupId>com.qiniu</groupId>
  47. <artifactId>qiniu-java-sdk</artifactId>
  48. <version>[7.2.0, 7.2.99]</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.aliyun.oss</groupId>
  52. <artifactId>aliyun-sdk-oss</artifactId>
  53. <version>3.5.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.qcloud</groupId>
  57. <artifactId>cos_api</artifactId>
  58. <version>5.6.3</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>slf4j-log4j12</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.tencentcloudapi</groupId>
  68. <artifactId>tencentcloud-sdk-java</artifactId>
  69. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  70. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
  71. <version>3.1.322</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.hibernate.validator</groupId>
  75. <artifactId>hibernate-validator</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.binarywang</groupId>
  79. <artifactId>weixin-java-miniapp</artifactId>
  80. <version>${weixin-java-miniapp.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.github.binarywang</groupId>
  84. <artifactId>weixin-java-pay</artifactId>
  85. <version>4.6.5.B</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.binarywang</groupId>
  89. <artifactId>weixin-java-mp</artifactId>
  90. <version>${weixin-java-mp.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.binarywang</groupId>
  94. <artifactId>weixin-java-cp</artifactId>
  95. <version>${weixin-java-cp.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.httpcomponents.client5</groupId>
  99. <artifactId>httpclient5</artifactId>
  100. <version>5.2.1</version>
  101. </dependency>
  102. <!-- <dependency>-->
  103. <!-- <groupId>redis.clients</groupId>-->
  104. <!-- <artifactId>jedis</artifactId>-->
  105. <!-- <version>2.9.0</version>-->
  106. <!-- </dependency>-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>com.github.jedis-lock</groupId>-->
  109. <!-- <artifactId>jedis-lock</artifactId>-->
  110. <!-- <version>1.0.0</version>-->
  111. <!-- </dependency>-->
  112. <dependency>
  113. <groupId>com.hc</groupId>
  114. <artifactId>openapi</artifactId>
  115. <version>1.0</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.vdurmont</groupId>
  119. <artifactId>emoji-java</artifactId>
  120. <version>4.0.0</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>cn.jpush.api</groupId>
  124. <artifactId>jpush-client</artifactId>
  125. <version>3.4.3</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>cn.jpush.api</groupId>
  129. <artifactId>jiguang-common</artifactId>
  130. <version>1.1.7</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.google.zxing</groupId>
  134. <artifactId>core</artifactId>
  135. <version>3.3.3</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.google.zxing</groupId>
  139. <artifactId>javase</artifactId>
  140. <version>3.3.3</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.squareup.okhttp3</groupId>
  144. <artifactId>okhttp</artifactId>
  145. <version>3.14.9</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.belerweb</groupId>
  149. <artifactId>pinyin4j</artifactId>
  150. <version>2.5.1</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.huaweicloud</groupId>
  154. <artifactId>esdk-obs-java-bundle</artifactId>
  155. <version>3.23.9</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.huaweicloud.sdk</groupId>
  159. <artifactId>huaweicloud-sdk-vod</artifactId>
  160. <version>3.1.103</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.huaweicloud.sdk</groupId>
  164. <artifactId>huaweicloud-sdk-mpc</artifactId>
  165. <version>3.1.88</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.qcloud</groupId>
  169. <artifactId>cos-sts_api</artifactId>
  170. <version>3.1.1</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.baidubce</groupId>
  179. <artifactId>appbuilder</artifactId>
  180. <version>0.6.0</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.redisson</groupId>
  184. <artifactId>redisson-spring-boot-starter</artifactId>
  185. <version>3.13.6</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.github.ben-manes.caffeine</groupId>
  189. <artifactId>caffeine</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.mapstruct</groupId>
  193. <artifactId>mapstruct</artifactId>
  194. <version>${org.mapstruct.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.mapstruct</groupId>
  198. <artifactId>mapstruct-processor</artifactId>
  199. <version>${org.mapstruct.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.apache.rocketmq</groupId>
  203. <artifactId>rocketmq-spring-boot-starter</artifactId>
  204. <version>2.2.3</version>
  205. </dependency>
  206. </dependencies>
  207. </project>