pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.18</version>
  10. </parent>
  11. <groupId>com.zfire.mall</groupId>
  12. <artifactId>mall_contest_api</artifactId>
  13. <version>1.0.0</version>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. <maven.compiler.source>${java.version}</maven.compiler.source>
  19. <maven.compiler.target>${java.version}</maven.compiler.target>
  20. <spring-boot.version>2.7.18</spring-boot.version>
  21. <mybatis-plus.version>3.4.3.4</mybatis-plus.version>
  22. <swagger-v3.version>2.2.25</swagger-v3.version>
  23. <springdoc.version>1.8.0</springdoc.version>
  24. <hutool.version>5.8.21</hutool.version>
  25. <druid.version>1.2.16</druid.version>
  26. <jwt.version>0.12.6</jwt.version>
  27. <google-z.version>3.3.2</google-z.version>
  28. <knife4j.version>4.3.0</knife4j.version>
  29. <mapstruct.version>1.5.5.Final</mapstruct.version>
  30. <weixin.version>4.5.0</weixin.version>
  31. <kaptcha.version>2.3.2</kaptcha.version>
  32. <aliyun.sdk.version>4.0.3</aliyun.sdk.version>
  33. <aliyun.oss.version>3.8.1</aliyun.oss.version>
  34. <ali.easyexcel.version>3.3.2</ali.easyexcel.version>
  35. <poi.version>3.17</poi.version>
  36. <bitwalker.version>1.21</bitwalker.version>
  37. <javax-mail.version>1.5.5</javax-mail.version>
  38. <ok-http.version>4.0.1</ok-http.version>
  39. </properties>
  40. <dependencies>
  41. <!-- spring boot -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-tomcat</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-undertow</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-aop</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-json</artifactId>
  63. <version>${spring-boot.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-redis</artifactId>
  68. <version>${spring-boot.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.integration</groupId>
  72. <artifactId>spring-integration-redis</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-configuration-processor</artifactId>
  77. <version>${spring-boot.version}</version>
  78. </dependency>
  79. <!-- Lombok -->
  80. <dependency>
  81. <groupId>org.projectlombok</groupId>
  82. <artifactId>lombok</artifactId>
  83. <version>${lombok.version}</version>
  84. <scope>provided</scope>
  85. </dependency>
  86. <!-- Hutool -->
  87. <dependency>
  88. <groupId>cn.hutool</groupId>
  89. <artifactId>hutool-all</artifactId>
  90. <version>${hutool.version}</version>
  91. </dependency>
  92. <!-- Hibernate Validator -->
  93. <dependency>
  94. <groupId>org.hibernate.validator</groupId>
  95. <artifactId>hibernate-validator</artifactId>
  96. <version>${hibernate-validator.version}</version>
  97. </dependency>
  98. <!-- MyBatis Plus -->
  99. <dependency>
  100. <groupId>com.baomidou</groupId>
  101. <artifactId>mybatis-plus-boot-starter</artifactId>
  102. <version>${mybatis-plus.version}</version>
  103. </dependency>
  104. <!-- mysql -->
  105. <dependency>
  106. <groupId>mysql</groupId>
  107. <artifactId>mysql-connector-java</artifactId>
  108. <version>${mysql.version}</version>
  109. </dependency>
  110. <!-- swagger -->
  111. <dependency>
  112. <groupId>io.swagger.core.v3</groupId>
  113. <artifactId>swagger-annotations</artifactId>
  114. <version>${swagger-v3.version}</version>
  115. </dependency>
  116. <!-- 接口文档:使用最新版本的 Swagger 模型 -->
  117. <dependency>
  118. <groupId>io.swagger.core.v3</groupId>
  119. <artifactId>swagger-models</artifactId>
  120. <version>${swagger-v3.version}</version>
  121. </dependency>
  122. <!-- 接口文档 UI:knife4j -->
  123. <dependency>
  124. <groupId>com.github.xiaoymin</groupId>
  125. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  126. <version>${knife4j.version}</version>
  127. </dependency>
  128. <!-- Druid -->
  129. <dependency>
  130. <groupId>com.alibaba</groupId>
  131. <artifactId>druid-spring-boot-starter</artifactId>
  132. <version>${druid.version}</version>
  133. </dependency>
  134. <!-- jackson -->
  135. <dependency>
  136. <groupId>com.fasterxml.jackson.core</groupId>
  137. <artifactId>jackson-annotations</artifactId>
  138. </dependency>
  139. <!-- mapstruct -->
  140. <dependency>
  141. <groupId>org.mapstruct</groupId>
  142. <artifactId>mapstruct</artifactId>
  143. <version>${mapstruct.version}</version>
  144. </dependency>
  145. <!-- 图片验证码 -->
  146. <dependency>
  147. <groupId>com.github.penggle</groupId>
  148. <artifactId>kaptcha</artifactId>
  149. <version>${kaptcha.version}</version>
  150. </dependency>
  151. <!-- 微信支付 -->
  152. <dependency>
  153. <groupId>com.github.binarywang</groupId>
  154. <artifactId>weixin-java-pay</artifactId>
  155. <version>${weixin.version}</version>
  156. </dependency>
  157. <!-- 微信小程序 -->
  158. <dependency>
  159. <groupId>com.github.binarywang</groupId>
  160. <artifactId>weixin-java-miniapp</artifactId>
  161. <version>${weixin.version}</version>
  162. </dependency>
  163. <!--公众号-->
  164. <dependency>
  165. <groupId>com.github.binarywang</groupId>
  166. <artifactId>weixin-java-mp</artifactId>
  167. <version>${weixin.version}</version>
  168. </dependency>
  169. <!-- 阿里 -->
  170. <dependency>
  171. <groupId>com.aliyun</groupId>
  172. <artifactId>aliyun-java-sdk-core</artifactId>
  173. <version>${aliyun.sdk.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.alibaba</groupId>
  177. <artifactId>easyexcel</artifactId>
  178. <version>${ali.easyexcel.version}</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>com.aliyun.oss</groupId>
  182. <artifactId>aliyun-sdk-oss</artifactId>
  183. <version>${aliyun.oss.version}</version>
  184. </dependency>
  185. <!-- JWT -->
  186. <dependency>
  187. <groupId>io.jsonwebtoken</groupId>
  188. <artifactId>jjwt-api</artifactId>
  189. <version>${jwt.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>io.jsonwebtoken</groupId>
  193. <artifactId>jjwt-impl</artifactId>
  194. <version>${jwt.version}</version>
  195. <scope>runtime</scope>
  196. </dependency>
  197. <dependency>
  198. <groupId>io.jsonwebtoken</groupId>
  199. <artifactId>jjwt-jackson</artifactId>
  200. <version>${jwt.version}</version>
  201. <scope>runtime</scope>
  202. </dependency>
  203. <!-- poi -->
  204. <!-- <dependency>-->
  205. <!-- <groupId>org.apache.poi</groupId>-->
  206. <!-- <artifactId>poi</artifactId>-->
  207. <!-- <version>${poi.version}</version>-->
  208. <!-- </dependency>-->
  209. <!-- <dependency>-->
  210. <!-- <groupId>org.apache.poi</groupId>-->
  211. <!-- <artifactId>poi-ooxml-schemas</artifactId>-->
  212. <!-- <version>${poi.version}</version>-->
  213. <!-- </dependency>-->
  214. <!-- <dependency>-->
  215. <!-- <groupId>org.apache.poi</groupId>-->
  216. <!-- <artifactId>poi-ooxml</artifactId>-->
  217. <!-- <version>${poi.version}</version>-->
  218. <!-- </dependency>-->
  219. <dependency>
  220. <groupId>eu.bitwalker</groupId>
  221. <artifactId>UserAgentUtils</artifactId>
  222. <version>${bitwalker.version}</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>com.sun.mail</groupId>
  226. <artifactId>javax.mail</artifactId>
  227. <version>${javax-mail.version}</version>
  228. </dependency>
  229. <!--okhttp3-->
  230. <dependency>
  231. <groupId>com.squareup.okhttp3</groupId>
  232. <artifactId>okhttp</artifactId>
  233. <version>${ok-http.version}</version>
  234. </dependency>
  235. </dependencies>
  236. <build>
  237. <plugins>
  238. <plugin>
  239. <groupId>org.springframework.boot</groupId>
  240. <artifactId>spring-boot-maven-plugin</artifactId>
  241. <version>${spring-boot.version}</version>
  242. <executions>
  243. <execution>
  244. <goals>
  245. <goal>repackage</goal>
  246. </goals>
  247. </execution>
  248. </executions>
  249. </plugin>
  250. <plugin>
  251. <groupId>com.plus.plugin</groupId>
  252. <artifactId>plus-maven-plugin</artifactId>
  253. <version>1.0</version>
  254. <configuration>
  255. <configPath>src/main/resources/generator.properties</configPath>
  256. </configuration>
  257. <dependencies>
  258. <dependency>
  259. <groupId>com.h2database</groupId>
  260. <artifactId>h2</artifactId>
  261. <version>2.1.214</version>
  262. <scope>runtime</scope>
  263. </dependency>
  264. <dependency>
  265. <groupId>com.baomidou</groupId>
  266. <artifactId>mybatis-plus-boot-starter</artifactId>
  267. <version>3.4.3.4</version>
  268. </dependency>
  269. <dependency>
  270. <groupId>com.baomidou</groupId>
  271. <artifactId>mybatis-plus-generator</artifactId>
  272. <version>3.5.1</version>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.mybatis.spring.boot</groupId>
  276. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  277. <version>2.1.0</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>org.springframework.boot</groupId>
  281. <artifactId>spring-boot-starter-freemarker</artifactId>
  282. <version>${spring-boot.version}</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.velocity</groupId>
  286. <artifactId>velocity-engine-core</artifactId>
  287. <version>2.1</version>
  288. </dependency>
  289. <!-- maven -->
  290. <dependency>
  291. <groupId>org.apache.maven.plugin-tools</groupId>
  292. <artifactId>maven-plugin-annotations</artifactId>
  293. <version>3.5</version>
  294. <scope>runtime</scope>
  295. </dependency>
  296. <dependency>
  297. <groupId>commons-configuration</groupId>
  298. <artifactId>commons-configuration</artifactId>
  299. <version>1.9</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>commons-lang</groupId>
  303. <artifactId>commons-lang</artifactId>
  304. <version>2.6</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>mysql</groupId>
  308. <artifactId>mysql-connector-java</artifactId>
  309. <version>${mysql.version}</version>
  310. </dependency>
  311. </dependencies>
  312. </plugin>
  313. </plugins>
  314. </build>
  315. </project>