pom.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.gree.miniapp</groupId>
  12. <artifactId>mall_miniapp</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>mall_miniapp</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <!--<dependency>-->
  21. <!--<groupId>org.springframework.boot</groupId>-->
  22. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  23. <!--</dependency>-->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-tomcat</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.integration</groupId>
  40. <artifactId>spring-integration-redis</artifactId>
  41. <version>5.5.5</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-devtools</artifactId>
  46. <scope>runtime</scope>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.junit.vintage</groupId>
  56. <artifactId>junit-vintage-engine</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <!--<dependency>-->
  61. <!--<groupId>org.mongodb</groupId>-->
  62. <!--<artifactId>mongo-java-driver</artifactId>-->
  63. <!--<version>3.2.2</version>-->
  64. <!--</dependency>-->
  65. <!-- 分页 -->
  66. <!--<dependency>-->
  67. <!--<groupId>com.github.pagehelper</groupId>-->
  68. <!--<artifactId>pagehelper-spring-boot-starter</artifactId>-->
  69. <!--<version>1.2.13</version>-->
  70. <!--<exclusions>-->
  71. <!--<exclusion>-->
  72. <!--<artifactId>mybatis-spring-boot-starter</artifactId>-->
  73. <!--<groupId>org.mybatis.spring.boot</groupId>-->
  74. <!--</exclusion>-->
  75. <!--</exclusions>-->
  76. <!--</dependency>-->
  77. <!--mybatis-->
  78. <dependency>
  79. <groupId>org.mybatis.spring.boot</groupId>
  80. <artifactId>mybatis-spring-boot-starter</artifactId>
  81. <version>2.1.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. <version>3.1.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.baomidou</groupId>
  90. <artifactId>mybatis-plus-generator</artifactId>
  91. <version>3.1.2</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.velocity</groupId>
  95. <artifactId>velocity-engine-core</artifactId>
  96. <version>2.1</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok</artifactId>
  101. <version>1.18.8</version>
  102. <scope>provided</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.mybatis.spring.boot</groupId>
  106. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  107. <version>2.1.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.google.zxing</groupId>
  111. <artifactId>core</artifactId>
  112. <version>3.3.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.zxing</groupId>
  116. <artifactId>javase</artifactId>
  117. <version>3.3.2</version>
  118. </dependency>
  119. <!--mysql驱动-->
  120. <dependency>
  121. <groupId>mysql</groupId>
  122. <artifactId>mysql-connector-java</artifactId>
  123. <version>8.0.17</version>
  124. </dependency>
  125. <!--访问安全-->
  126. <!--<dependency>-->
  127. <!--<groupId>org.springframework.security</groupId>-->
  128. <!--<artifactId>spring-security-test</artifactId>-->
  129. <!--<scope>test</scope>-->
  130. <!--</dependency>-->
  131. <!-- druid -->
  132. <!--<dependency>-->
  133. <!--<groupId>com.alibaba</groupId>-->
  134. <!--<artifactId>druid</artifactId>-->
  135. <!--<version>1.1.19</version>-->
  136. <!--</dependency>-->
  137. <dependency>
  138. <groupId>com.alibaba</groupId>
  139. <artifactId>druid-spring-boot-starter</artifactId>
  140. <version>1.1.21</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.commons</groupId>
  144. <artifactId>commons-pool2</artifactId>
  145. <version>2.8.0</version>
  146. </dependency>
  147. <!--fastjson-->
  148. <dependency>
  149. <groupId>com.alibaba</groupId>
  150. <artifactId>fastjson</artifactId>
  151. <version>1.2.59</version>
  152. </dependency>
  153. <!--okhttp3-->
  154. <dependency>
  155. <groupId>com.squareup.okhttp3</groupId>
  156. <artifactId>okhttp</artifactId>
  157. <version>4.0.1</version>
  158. </dependency>
  159. <!--swagger接口文档框架-->
  160. <dependency>
  161. <groupId>io.springfox</groupId>
  162. <artifactId>springfox-swagger2</artifactId>
  163. <version>2.9.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>io.springfox</groupId>
  167. <artifactId>springfox-swagger-ui</artifactId>
  168. <version>2.9.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.github.xiaoymin</groupId>
  172. <artifactId>swagger-bootstrap-ui</artifactId>
  173. <version>1.9.4</version>
  174. </dependency>
  175. <!-- 支持 @ConfigurationProperties 注解 -->
  176. <dependency>
  177. <groupId>org.springframework.boot</groupId>
  178. <artifactId>spring-boot-configuration-processor</artifactId>
  179. <optional>true</optional>
  180. </dependency>
  181. <!-- fix swagger input报错-->
  182. <dependency>
  183. <groupId>io.swagger</groupId>
  184. <artifactId>swagger-annotations</artifactId>
  185. <version>1.5.22</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>io.swagger</groupId>
  189. <artifactId>swagger-models</artifactId>
  190. <version>1.5.22</version>
  191. </dependency>
  192. <!--更换undertow容器-->
  193. <dependency>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-starter-undertow</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.bouncycastle</groupId>
  199. <artifactId>bcprov-jdk15on</artifactId>
  200. <version>1.60</version>
  201. <scope>compile</scope>
  202. </dependency>
  203. <!--SQL执行分析-->
  204. <!--<dependency>-->
  205. <!--<groupId>p6spy</groupId>-->
  206. <!--<artifactId>p6spy</artifactId>-->
  207. <!--<version>3.8.5</version>-->
  208. <!--</dependency>-->
  209. <!--json-->
  210. <!--<dependency>-->
  211. <!--<groupId>net.sf.json-lib</groupId>-->
  212. <!--<artifactId>json-lib</artifactId>-->
  213. <!--<version>2.3</version>-->
  214. <!--<classifier>jdk15</classifier>-->
  215. <!--</dependency>-->
  216. <!--<dependency>-->
  217. <!--<groupId>com.vdurmont</groupId>-->
  218. <!--<artifactId>emoji-java</artifactId>-->
  219. <!--<version>4.0.0</version>-->
  220. <!--</dependency>-->
  221. <dependency>
  222. <groupId>net.coobird</groupId>
  223. <artifactId>thumbnailator</artifactId>
  224. <version>0.4.8</version>
  225. <scope>compile</scope>
  226. </dependency>
  227. <dependency>
  228. <groupId>com.alibaba</groupId>
  229. <artifactId>easyexcel</artifactId>
  230. <version>2.1.6</version>
  231. <exclusions>
  232. <exclusion>
  233. <artifactId>asm</artifactId>
  234. <groupId>org.ow2.asm</groupId>
  235. </exclusion>
  236. </exclusions>
  237. </dependency>
  238. <dependency>
  239. <groupId>eu.bitwalker</groupId>
  240. <artifactId>UserAgentUtils</artifactId>
  241. <version>1.21</version>
  242. </dependency>
  243. <!-- 图片验证码 -->
  244. <dependency>
  245. <groupId>com.github.penggle</groupId>
  246. <artifactId>kaptcha</artifactId>
  247. <version>2.3.2</version>
  248. </dependency>
  249. <!--<dependency>-->
  250. <!--<groupId>org.mongodb</groupId>-->
  251. <!--<artifactId>mongo-java-driver</artifactId>-->
  252. <!--<version>3.2.2</version>-->
  253. <!--</dependency>-->
  254. <dependency>
  255. <groupId>org.apache.poi</groupId>
  256. <artifactId>poi</artifactId>
  257. <version>3.17</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>org.apache.poi</groupId>
  261. <artifactId>poi-ooxml-schemas</artifactId>
  262. <version>3.17</version>
  263. </dependency>
  264. <dependency>
  265. <groupId>org.apache.poi</groupId>
  266. <artifactId>poi-ooxml</artifactId>
  267. <version>3.17</version>
  268. </dependency>
  269. <!---excel导入-->
  270. <dependency>
  271. <groupId>cn.afterturn</groupId>
  272. <artifactId>easypoi-base</artifactId>
  273. <version>3.0.3</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>cn.afterturn</groupId>
  277. <artifactId>easypoi-web</artifactId>
  278. <version>3.0.3</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>cn.afterturn</groupId>
  282. <artifactId>easypoi-annotation</artifactId>
  283. <version>3.0.3</version>
  284. </dependency>
  285. <dependency>
  286. <groupId>io.jsonwebtoken</groupId>
  287. <artifactId>jjwt</artifactId>
  288. <version>0.6.0</version>
  289. </dependency>
  290. <dependency>
  291. <groupId>com.aliyun.oss</groupId>
  292. <artifactId>aliyun-sdk-oss</artifactId>
  293. <version>3.8.1</version>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.springframework</groupId>
  297. <artifactId>spring-mock</artifactId>
  298. <version>2.0.8</version>
  299. </dependency>
  300. <dependency>
  301. <groupId>org.apache.httpcomponents</groupId>
  302. <artifactId>httpclient</artifactId>
  303. <version>4.5</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>org.apache.httpcomponents</groupId>
  307. <artifactId>httpmime</artifactId>
  308. <version>4.5</version>
  309. </dependency>
  310. <!--模板组件-->
  311. <dependency>
  312. <groupId>org.springframework.boot</groupId>
  313. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  314. <version>2.2.6.RELEASE</version>
  315. </dependency>
  316. <!--模板组件END-->
  317. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  318. <dependency>
  319. <groupId>commons-codec</groupId>
  320. <artifactId>commons-codec</artifactId>
  321. <version>1.9</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.aliyun</groupId>
  325. <artifactId>aliyun-java-sdk-core</artifactId>
  326. <version>4.0.3</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>com.sun.mail</groupId>
  330. <artifactId>javax.mail</artifactId>
  331. <version>1.5.5</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>com.alibaba.cloud</groupId>
  335. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  336. <version>2.1.0.RELEASE</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>com.alibaba.cloud</groupId>
  340. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  341. <version>2.1.0.RELEASE</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>org.springframework.cloud</groupId>
  345. <artifactId>spring-cloud-starter-openfeign</artifactId>
  346. <version>2.1.3.RELEASE</version>
  347. </dependency>
  348. <!--<dependency>-->
  349. <!--<groupId>net.javacrumbs.shedlock</groupId>-->
  350. <!--<artifactId>shedlock-spring</artifactId>-->
  351. <!--<version>4.12.0</version>-->
  352. <!--</dependency>-->
  353. <!--<dependency>-->
  354. <!--<groupId>net.javacrumbs.shedlock</groupId>-->
  355. <!--<artifactId>shedlock-provider-redis-spring</artifactId>-->
  356. <!--<version>4.12.0</version>-->
  357. <!--</dependency>-->
  358. <dependency>
  359. <groupId>net.logstash.logback</groupId>
  360. <artifactId>logstash-logback-encoder</artifactId>
  361. <version>6.3</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>com.github.wxpay</groupId>
  365. <artifactId>wxpay-sdk</artifactId>
  366. <version>0.0.3</version>
  367. </dependency>
  368. <!--企业微信api-->
  369. <dependency>
  370. <groupId>com.github.binarywang</groupId>
  371. <artifactId>weixin-java-cp</artifactId>
  372. <version>4.1.0</version>
  373. </dependency>
  374. <!-- 微信支付 -->
  375. <dependency>
  376. <groupId>com.github.binarywang</groupId>
  377. <artifactId>weixin-java-pay</artifactId>
  378. <version>4.1.0</version>
  379. </dependency>
  380. <!-- 微信小程序 -->
  381. <dependency>
  382. <groupId>com.github.binarywang</groupId>
  383. <artifactId>weixin-java-miniapp</artifactId>
  384. <version>4.1.0</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>com.github.binarywang</groupId>
  388. <artifactId>weixin-java-mp</artifactId>
  389. <version>4.1.0</version>
  390. </dependency>
  391. <!--hutool-->
  392. <dependency>
  393. <groupId>cn.hutool</groupId>
  394. <artifactId>hutool-all</artifactId>
  395. <version>5.8.1</version>
  396. </dependency>
  397. </dependencies>
  398. <profiles>
  399. <profile>
  400. <!-- 本地开发环境 -->
  401. <id>dev</id>
  402. <properties>
  403. <profiles.active>dev</profiles.active>
  404. </properties>
  405. <activation>
  406. <!-- 设置默认激活这个配置 -->
  407. <activeByDefault>true</activeByDefault>
  408. </activation>
  409. </profile>
  410. <profile>
  411. <!-- 测试环境 -->
  412. <id>test</id>
  413. <properties>
  414. <profiles.active>test</profiles.active>
  415. </properties>
  416. </profile>
  417. <profile>
  418. <!-- 正式环境 -->
  419. <id>prd</id>
  420. <properties>
  421. <profiles.active>prd</profiles.active>
  422. </properties>
  423. </profile>
  424. </profiles>
  425. <build>
  426. <plugins>
  427. <plugin>
  428. <groupId>org.springframework.boot</groupId>
  429. <artifactId>spring-boot-maven-plugin</artifactId>
  430. <!-- <configuration>-->
  431. <!-- <jvmArguments>-->
  432. <!-- -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=9090-->
  433. <!-- </jvmArguments>-->
  434. <!-- </configuration>-->
  435. </plugin>
  436. <plugin>
  437. <groupId>com.plus.plugin</groupId>
  438. <artifactId>plus-maven-plugin</artifactId>
  439. <version>2.0.0</version>
  440. <configuration>
  441. <configPath>src/main/resources/generator-${profiles.active}.properties</configPath>
  442. </configuration>
  443. </plugin>
  444. </plugins>
  445. </build>
  446. <repositories>
  447. <repository>
  448. <id>nexus</id>
  449. <name>Releases</name>
  450. <url>http://121.43.111.127:8081/repository/maven-public</url>
  451. <releases>
  452. <enabled>true</enabled>
  453. </releases>
  454. <!--snapshots默认是关闭的,需要开启 -->
  455. <snapshots>
  456. <enabled>true</enabled>
  457. </snapshots>
  458. </repository>
  459. </repositories>
  460. <pluginRepositories>
  461. <pluginRepository>
  462. <id>nexus</id>
  463. <name>Releases</name>
  464. <url>http://121.43.111.127:8081/repository/maven-public</url>
  465. </pluginRepository>
  466. </pluginRepositories>
  467. </project>