pom.xml 17 KB

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