pom.xml 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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. <groupId>com.miaxis</groupId>
  7. <artifactId>jsjp</artifactId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jsjp-common</artifactId>
  12. <description>
  13. common通用工具
  14. </description>
  15. <dependencies>
  16. <!-- Spring框架基本的核心工具 -->
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-context-support</artifactId>
  20. </dependency>
  21. <!-- SpringWeb模块 -->
  22. <dependency>
  23. <groupId>org.springframework</groupId>
  24. <artifactId>spring-web</artifactId>
  25. </dependency>
  26. <!-- spring security 安全认证 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-security</artifactId>
  30. </dependency>
  31. <!-- pagehelper 分页插件 -->
  32. <dependency>
  33. <groupId>com.github.pagehelper</groupId>
  34. <artifactId>pagehelper-spring-boot-starter</artifactId>
  35. </dependency>
  36. <!-- 自定义验证注解 -->
  37. <dependency>
  38. <groupId>javax.validation</groupId>
  39. <artifactId>validation-api</artifactId>
  40. </dependency>
  41. <!--常用工具类 -->
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-lang3</artifactId>
  45. </dependency>
  46. <!-- JSON工具类 -->
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-databind</artifactId>
  50. </dependency>
  51. <!-- 阿里JSON解析器 -->
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>fastjson</artifactId>
  55. </dependency>
  56. <!-- io常用工具类 -->
  57. <dependency>
  58. <groupId>commons-io</groupId>
  59. <artifactId>commons-io</artifactId>
  60. </dependency>
  61. <!-- 文件上传工具类 -->
  62. <dependency>
  63. <groupId>commons-fileupload</groupId>
  64. <artifactId>commons-fileupload</artifactId>
  65. </dependency>
  66. <!-- excel工具 -->
  67. <dependency>
  68. <groupId>org.apache.poi</groupId>
  69. <artifactId>poi-ooxml</artifactId>
  70. </dependency>
  71. <!-- yml解析器 -->
  72. <dependency>
  73. <groupId>org.yaml</groupId>
  74. <artifactId>snakeyaml</artifactId>
  75. </dependency>
  76. <!--Token生成与解析-->
  77. <dependency>
  78. <groupId>io.jsonwebtoken</groupId>
  79. <artifactId>jjwt</artifactId>
  80. </dependency>
  81. <!-- redis 缓存操作 -->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-data-redis</artifactId>
  85. </dependency>
  86. <!-- pool 对象池 -->
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-pool2</artifactId>
  90. </dependency>
  91. <!-- 解析客户端操作系统、浏览器等 -->
  92. <dependency>
  93. <groupId>eu.bitwalker</groupId>
  94. <artifactId>UserAgentUtils</artifactId>
  95. </dependency>
  96. <!-- servlet包 -->
  97. <dependency>
  98. <groupId>javax.servlet</groupId>
  99. <artifactId>javax.servlet-api</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.baomidou</groupId>
  103. <artifactId>mybatis-plus-boot-starter</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.baomidou</groupId>
  107. <artifactId>mybatis-plus-extension</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>cn.hutool</groupId>
  111. <artifactId>hutool-all</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.projectlombok</groupId>
  115. <artifactId>lombok</artifactId>
  116. </dependency>
  117. <!--oracle驱动-->
  118. <!--<dependency>
  119. <groupId>com.oracle</groupId>
  120. <artifactId>ojdbc6</artifactId>
  121. <version>11.2.0.3</version>
  122. </dependency>-->
  123. <!-- https://mvnrepository.com/artifact/com.oracle.database.jdbc/ojdbc8 -->
  124. <dependency>
  125. <groupId>com.oracle.database.jdbc</groupId>
  126. <artifactId>ojdbc8</artifactId>
  127. <version>21.7.0.0</version>
  128. </dependency>
  129. <!--腾讯云存储依赖-->
  130. <dependency>
  131. <groupId>com.qcloud</groupId>
  132. <artifactId>cos_api</artifactId>
  133. <version>5.6.38</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.github.wxpay</groupId>
  137. <artifactId>wxpay-sdk</artifactId>
  138. <version>0.0.3</version>
  139. </dependency>
  140. <!--腾讯云sdk依赖,排除log4j依赖,解决与框架中logback的冲突-->
  141. <dependency>
  142. <groupId>com.qcloud</groupId>
  143. <artifactId>vod_api</artifactId>
  144. <version>2.1.4</version>
  145. <exclusions>
  146. <exclusion>
  147. <groupId>log4j</groupId>
  148. <artifactId>log4j</artifactId>
  149. </exclusion>
  150. <exclusion>
  151. <groupId>org.slf4j</groupId>
  152. <artifactId>slf4j-log4j12</artifactId>
  153. </exclusion>
  154. </exclusions>
  155. </dependency>
  156. <!--<dependency>-->
  157. <!--<groupId>com.tencentcloudapi</groupId>-->
  158. <!--<artifactId>tencentcloud-sdk-java</artifactId>-->
  159. <!--&lt;!&ndash; go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. &ndash;&gt;-->
  160. <!--&lt;!&ndash; 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 &ndash;&gt;-->
  161. <!--<version>3.1.296</version>-->
  162. <!--</dependency>-->
  163. <!-- swagger2-->
  164. <dependency>
  165. <groupId>io.springfox</groupId>
  166. <artifactId>springfox-swagger2</artifactId>
  167. <version>${swagger.version}</version>
  168. <exclusions>
  169. <exclusion>
  170. <groupId>io.swagger</groupId>
  171. <artifactId>swagger-annotations</artifactId>
  172. </exclusion>
  173. <exclusion>
  174. <groupId>io.swagger</groupId>
  175. <artifactId>swagger-models</artifactId>
  176. </exclusion>
  177. </exclusions>
  178. </dependency>
  179. <!--防止进入swagger页面报类型转换错误(java.lang.NumberFormatException: For input string: ""),
  180. 排除2.9.2中的引用,手动增加1.5.21版本-->
  181. <dependency>
  182. <groupId>io.swagger</groupId>
  183. <artifactId>swagger-annotations</artifactId>
  184. <version>1.5.21</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>io.swagger</groupId>
  188. <artifactId>swagger-models</artifactId>
  189. <version>1.5.21</version>
  190. </dependency>
  191. <!-- swagger-bootstrap-UI-->
  192. <dependency>
  193. <groupId>com.github.xiaoymin</groupId>
  194. <artifactId>swagger-bootstrap-ui</artifactId>
  195. <version>1.9.4</version>
  196. </dependency>
  197. <!--aliyunOSS OSS-->
  198. <dependency>
  199. <groupId>com.aliyun.oss</groupId>
  200. <artifactId>aliyun-sdk-oss</artifactId>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.springframework.cloud</groupId>
  204. <artifactId>spring-cloud-starter-openfeign</artifactId>
  205. </dependency>
  206. <dependency>
  207. <groupId>io.github.openfeign.form</groupId>
  208. <artifactId>feign-form</artifactId>
  209. <version>3.8.0</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>io.github.openfeign.form</groupId>
  213. <artifactId>feign-form-spring</artifactId>
  214. <version>3.8.0</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.github.wechatpay-apiv3</groupId>
  218. <artifactId>wechatpay-apache-httpclient</artifactId>
  219. <version>0.2.2</version>
  220. </dependency>
  221. </dependencies>
  222. </project>