pom.xml 17 KB

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