pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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>zzjs</artifactId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zzjs-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. <!-- swagger2-->
  130. <dependency>
  131. <groupId>io.springfox</groupId>
  132. <artifactId>springfox-swagger2</artifactId>
  133. <version>${swagger.version}</version>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>io.swagger</groupId>
  137. <artifactId>swagger-annotations</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>io.swagger</groupId>
  141. <artifactId>swagger-models</artifactId>
  142. </exclusion>
  143. </exclusions>
  144. </dependency>
  145. <!--防止进入swagger页面报类型转换错误(java.lang.NumberFormatException: For input string: ""),
  146. 排除2.9.2中的引用,手动增加1.5.21版本-->
  147. <dependency>
  148. <groupId>io.swagger</groupId>
  149. <artifactId>swagger-annotations</artifactId>
  150. <version>1.5.21</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>io.swagger</groupId>
  154. <artifactId>swagger-models</artifactId>
  155. <version>1.5.21</version>
  156. </dependency>
  157. <!-- swagger-bootstrap-UI-->
  158. <dependency>
  159. <groupId>com.github.xiaoymin</groupId>
  160. <artifactId>swagger-bootstrap-ui</artifactId>
  161. <version>1.9.4</version>
  162. </dependency>
  163. <!--aliyunOSS OSS-->
  164. <dependency>
  165. <groupId>com.aliyun.oss</groupId>
  166. <artifactId>aliyun-sdk-oss</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework.cloud</groupId>
  170. <artifactId>spring-cloud-starter-openfeign</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>io.github.openfeign.form</groupId>
  174. <artifactId>feign-form</artifactId>
  175. <version>3.8.0</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>io.github.openfeign.form</groupId>
  179. <artifactId>feign-form-spring</artifactId>
  180. <version>3.8.0</version>
  181. </dependency>
  182. </dependencies>
  183. </project>