pom.xml 13 KB

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