pom.xml 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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>sdjk</artifactId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sdjk-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. <!--腾讯云存储依赖-->
  124. <dependency>
  125. <groupId>com.qcloud</groupId>
  126. <artifactId>cos_api</artifactId>
  127. <version>5.6.38</version>
  128. </dependency>
  129. <!--email-->
  130. <dependency>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-starter-mail</artifactId>
  133. </dependency>
  134. <!--腾讯云sdk依赖,排除log4j依赖,解决与框架中logback的冲突-->
  135. <dependency>
  136. <groupId>com.qcloud</groupId>
  137. <artifactId>vod_api</artifactId>
  138. <version>2.1.4</version>
  139. <exclusions>
  140. <exclusion>
  141. <groupId>log4j</groupId>
  142. <artifactId>log4j</artifactId>
  143. </exclusion>
  144. <exclusion>
  145. <groupId>org.slf4j</groupId>
  146. <artifactId>slf4j-log4j12</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <!--IOS登录-->
  151. <dependency>
  152. <groupId>io.jsonwebtoken</groupId>
  153. <artifactId>jjwt</artifactId>
  154. <version>0.9.1</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>com.auth0</groupId>
  158. <artifactId>jwks-rsa</artifactId>
  159. <version>0.9.0</version>
  160. </dependency>
  161. <!--<dependency>-->
  162. <!--<groupId>com.tencentcloudapi</groupId>-->
  163. <!--<artifactId>tencentcloud-sdk-java</artifactId>-->
  164. <!--&lt;!&ndash; go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. &ndash;&gt;-->
  165. <!--&lt;!&ndash; 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 &ndash;&gt;-->
  166. <!--<version>3.1.296</version>-->
  167. <!--</dependency>-->
  168. <!-- swagger2-->
  169. <dependency>
  170. <groupId>io.springfox</groupId>
  171. <artifactId>springfox-swagger2</artifactId>
  172. <version>${swagger.version}</version>
  173. <exclusions>
  174. <exclusion>
  175. <groupId>io.swagger</groupId>
  176. <artifactId>swagger-annotations</artifactId>
  177. </exclusion>
  178. <exclusion>
  179. <groupId>io.swagger</groupId>
  180. <artifactId>swagger-models</artifactId>
  181. </exclusion>
  182. </exclusions>
  183. </dependency>
  184. <!--防止进入swagger页面报类型转换错误(java.lang.NumberFormatException: For input string: ""),
  185. 排除2.9.2中的引用,手动增加1.5.21版本-->
  186. <dependency>
  187. <groupId>io.swagger</groupId>
  188. <artifactId>swagger-annotations</artifactId>
  189. <version>1.5.21</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>io.swagger</groupId>
  193. <artifactId>swagger-models</artifactId>
  194. <version>1.5.21</version>
  195. </dependency>
  196. <!-- swagger-bootstrap-UI-->
  197. <dependency>
  198. <groupId>com.github.xiaoymin</groupId>
  199. <artifactId>swagger-bootstrap-ui</artifactId>
  200. <version>1.9.4</version>
  201. </dependency>
  202. <!--aliyunOSS OSS-->
  203. <dependency>
  204. <groupId>com.aliyun.oss</groupId>
  205. <artifactId>aliyun-sdk-oss</artifactId>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.springframework.cloud</groupId>
  209. <artifactId>spring-cloud-starter-openfeign</artifactId>
  210. </dependency>
  211. <dependency>
  212. <groupId>io.github.openfeign.form</groupId>
  213. <artifactId>feign-form</artifactId>
  214. <version>3.8.0</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>io.github.openfeign.form</groupId>
  218. <artifactId>feign-form-spring</artifactId>
  219. <version>3.8.0</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.github.wechatpay-apiv3</groupId>
  223. <artifactId>wechatpay-apache-httpclient</artifactId>
  224. <version>0.2.2</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>com.github.wxpay</groupId>
  228. <artifactId>wxpay-sdk</artifactId>
  229. <version>0.0.3</version>
  230. </dependency>
  231. </dependencies>
  232. </project>