pom.xml 12 KB

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