pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example.course</groupId>
  6. <artifactId>xklsale</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>xklsale</name>
  9. <description>xklsale</description>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <java.version>1.8</java.version>
  14. <mybatisplus.version>3.4.1</mybatisplus.version>
  15. <hutool.version>5.7.15</hutool.version>
  16. <druid.version>1.1.21</druid.version>
  17. <swagger.version>2.8.0</swagger.version>
  18. <fastjson.version>1.2.80</fastjson.version>
  19. <commons-lang3.version>3.3.2</commons-lang3.version>
  20. <commons.io.version>2.11.0</commons.io.version>
  21. <jedis.version>3.8.0</jedis.version>
  22. <qcloud.cos.version>5.6.69</qcloud.cos.version>
  23. <spring-boot-admin.version>2.6.10</spring-boot-admin.version>
  24. <mysql.connector.version>8.0.29</mysql.connector.version>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-dependencies</artifactId>
  31. <version>2.5.12</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. </dependencies>
  36. </dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>de.codecentric</groupId>
  40. <artifactId>spring-boot-admin-starter-client</artifactId>
  41. <version>${spring-boot-admin.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>redis.clients</groupId>
  49. <artifactId>jedis</artifactId>
  50. <version>${jedis.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>${mysql.connector.version}</version>
  56. <scope>runtime</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-validation</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>druid-spring-boot-starter</artifactId>
  65. <version>${druid.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.springfox</groupId>
  69. <artifactId>springfox-swagger2</artifactId>
  70. <version>${swagger.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.springfox</groupId>
  74. <artifactId>springfox-swagger-ui</artifactId>
  75. <version>${swagger.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-aop</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-data-redis</artifactId>
  84. </dependency>
  85. <!-- 腾讯第三方上传 -->
  86. <dependency>
  87. <groupId>com.qcloud</groupId>
  88. <artifactId>cos_api</artifactId>
  89. <version>${qcloud.cos.version}</version>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>org.slf4j</groupId>
  93. <artifactId>slf4j-log4j12</artifactId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. <!-- 生成二维码 -->
  98. <dependency>
  99. <groupId>com.google.zxing</groupId>
  100. <artifactId>core</artifactId>
  101. <version>3.3.3</version>
  102. </dependency>
  103. <!-- io常用工具类 -->
  104. <dependency>
  105. <groupId>commons-io</groupId>
  106. <artifactId>commons-io</artifactId>
  107. <version>${commons.io.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-lang3</artifactId>
  112. <version>${commons-lang3.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.alibaba</groupId>
  116. <artifactId>fastjson</artifactId>
  117. <version>${fastjson.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.projectlombok</groupId>
  121. <artifactId>lombok</artifactId>
  122. <optional>true</optional>
  123. </dependency>
  124. <dependency>
  125. <groupId>cn.hutool</groupId>
  126. <artifactId>hutool-all</artifactId>
  127. <version>${hutool.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.dom4j</groupId>
  131. <artifactId>dom4j</artifactId>
  132. <version>2.1.3</version>
  133. </dependency>
  134. <!-- <dependency> -->
  135. <!-- <groupId>org.hibernate.validator</groupId> -->
  136. <!-- <artifactId>hibernate-validator</artifactId> -->
  137. <!-- <version>6.1.5.Final</version> -->
  138. <!-- </dependency> -->
  139. <dependency>
  140. <groupId>io.jsonwebtoken</groupId>
  141. <artifactId>jjwt</artifactId>
  142. <version>0.9.0</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.httpcomponents</groupId>
  146. <artifactId>httpclient</artifactId>
  147. <version>4.5.9</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>commons-httpclient</groupId>
  151. <artifactId>commons-httpclient</artifactId>
  152. <version>3.1</version>
  153. </dependency>
  154. <!-- redisson分布式锁 -->
  155. <dependency>
  156. <groupId>org.redisson</groupId>
  157. <artifactId>redisson</artifactId>
  158. <version>3.14.1</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.bouncycastle</groupId>
  162. <artifactId>bcprov-jdk15on</artifactId>
  163. <version>1.64</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-starter-test</artifactId>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.baomidou</groupId>
  172. <artifactId>mybatis-plus-boot-starter</artifactId>
  173. <version>${mybatisplus.version}</version>
  174. <exclusions>
  175. <exclusion>
  176. <groupId>com.baomidou</groupId>
  177. <artifactId>mybatis-plus-generator</artifactId>
  178. </exclusion>
  179. </exclusions>
  180. </dependency>
  181. </dependencies>
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <groupId>org.springframework.boot</groupId>
  186. <artifactId>spring-boot-maven-plugin</artifactId>
  187. <configuration>
  188. <excludes>
  189. <exclude>
  190. <groupId>org.projectlombok</groupId>
  191. <artifactId>lombok</artifactId>
  192. </exclude>
  193. </excludes>
  194. </configuration>
  195. </plugin>
  196. <plugin>
  197. <groupId>org.apache.maven.plugins</groupId>
  198. <artifactId>maven-compiler-plugin</artifactId>
  199. <configuration>
  200. <source>8</source>
  201. <target>8</target>
  202. </configuration>
  203. </plugin>
  204. </plugins>
  205. </build>
  206. </project>