pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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>jpcj</artifactId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jpcj-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. <dependency>
  130. <groupId>com.github.wxpay</groupId>
  131. <artifactId>wxpay-sdk</artifactId>
  132. <version>0.0.3</version>
  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. <!--<dependency>-->
  151. <!--<groupId>com.tencentcloudapi</groupId>-->
  152. <!--<artifactId>tencentcloud-sdk-java</artifactId>-->
  153. <!--&lt;!&ndash; go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. &ndash;&gt;-->
  154. <!--&lt;!&ndash; 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 &ndash;&gt;-->
  155. <!--<version>3.1.296</version>-->
  156. <!--</dependency>-->
  157. <!-- swagger2-->
  158. <dependency>
  159. <groupId>io.springfox</groupId>
  160. <artifactId>springfox-swagger2</artifactId>
  161. <version>${swagger.version}</version>
  162. <exclusions>
  163. <exclusion>
  164. <groupId>io.swagger</groupId>
  165. <artifactId>swagger-annotations</artifactId>
  166. </exclusion>
  167. <exclusion>
  168. <groupId>io.swagger</groupId>
  169. <artifactId>swagger-models</artifactId>
  170. </exclusion>
  171. </exclusions>
  172. </dependency>
  173. <!--防止进入swagger页面报类型转换错误(java.lang.NumberFormatException: For input string: ""),
  174. 排除2.9.2中的引用,手动增加1.5.21版本-->
  175. <dependency>
  176. <groupId>io.swagger</groupId>
  177. <artifactId>swagger-annotations</artifactId>
  178. <version>1.5.21</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>io.swagger</groupId>
  182. <artifactId>swagger-models</artifactId>
  183. <version>1.5.21</version>
  184. </dependency>
  185. <!-- swagger-bootstrap-UI-->
  186. <dependency>
  187. <groupId>com.github.xiaoymin</groupId>
  188. <artifactId>swagger-bootstrap-ui</artifactId>
  189. <version>1.9.4</version>
  190. </dependency>
  191. <!--aliyunOSS OSS-->
  192. <dependency>
  193. <groupId>com.aliyun.oss</groupId>
  194. <artifactId>aliyun-sdk-oss</artifactId>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springframework.cloud</groupId>
  198. <artifactId>spring-cloud-starter-openfeign</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>io.github.openfeign.form</groupId>
  202. <artifactId>feign-form</artifactId>
  203. <version>3.8.0</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>io.github.openfeign.form</groupId>
  207. <artifactId>feign-form-spring</artifactId>
  208. <version>3.8.0</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.github.wechatpay-apiv3</groupId>
  212. <artifactId>wechatpay-apache-httpclient</artifactId>
  213. <version>0.2.2</version>
  214. </dependency>
  215. </dependencies>
  216. </project>