pom.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  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>zfire_mall_miniapp</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>zfire_mall_miniapp</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <mybatis.version>2.1.0</mybatis.version>
  19. <mybatis-plus.version>3.4.2</mybatis-plus.version>
  20. <velocity.version>2.1</velocity.version>
  21. <projectlombok.version>1.18.8</projectlombok.version>
  22. <mybatis-spring.version>2.1.0</mybatis-spring.version>
  23. <google.zxing.version>3.3.2</google.zxing.version>
  24. <mysql.version>8.0.17</mysql.version>
  25. <druid.version>1.1.21</druid.version>
  26. <commons-pool2.version>2.8.0</commons-pool2.version>
  27. <fastjson.version>1.2.59</fastjson.version>
  28. <okhttp3.version>4.0.1</okhttp3.version>
  29. <swagger.version>2.9.2</swagger.version>
  30. <swagger-bootstrap.version>1.9.4</swagger-bootstrap.version>
  31. <io-swagger.version>1.5.22</io-swagger.version>
  32. <bcprov-jdk15on.version>1.60</bcprov-jdk15on.version>
  33. <thumbnailator.version>0.4.8</thumbnailator.version>
  34. <io.jsonwebtoken.version>0.6.0</io.jsonwebtoken.version>
  35. <aliyun-sdk-oss.version>3.8.1</aliyun-sdk-oss.version>
  36. <httpclient.version>4.5</httpclient.version>
  37. <weixin-java.version>4.5.0</weixin-java.version>
  38. <hutool-all.version>5.8.1</hutool-all.version>
  39. <thymeleaf.version>2.2.6.RELEASE</thymeleaf.version>
  40. <commons-codec.version>1.9</commons-codec.version>
  41. <aliyun-sdk-core.version>4.0.3</aliyun-sdk-core.version>
  42. <junit.version>4.12</junit.version>
  43. <logstash.version>6.3</logstash.version>
  44. <wxpay-sdk.version>0.0.3</wxpay-sdk.version>
  45. </properties>
  46. <dependencies>
  47. <!--<dependency>-->
  48. <!--<groupId>org.springframework.boot</groupId>-->
  49. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  50. <!--</dependency>-->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-tomcat</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-data-redis</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.integration</groupId>
  67. <artifactId>spring-integration-redis</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-devtools</artifactId>
  72. <scope>runtime</scope>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-test</artifactId>
  78. <scope>test</scope>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.junit.vintage</groupId>
  82. <artifactId>junit-vintage-engine</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <!--mybatis-->
  87. <dependency>
  88. <groupId>org.mybatis.spring.boot</groupId>
  89. <artifactId>mybatis-spring-boot-starter</artifactId>
  90. <version>${mybatis.version}</version>
  91. <exclusions>
  92. <exclusion>
  93. <artifactId>mybatis</artifactId>
  94. <groupId>org.mybatis</groupId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-boot-starter</artifactId>
  101. <version>${mybatis-plus.version}</version>
  102. <!--<exclusions>-->
  103. <!--<exclusion>-->
  104. <!--<artifactId>mybatis</artifactId>-->
  105. <!--<groupId>org.mybatis</groupId>-->
  106. <!--</exclusion>-->
  107. <!--</exclusions>-->
  108. </dependency>
  109. <!--<dependency>-->
  110. <!--<groupId>com.baomidou</groupId>-->
  111. <!--<artifactId>mybatis-plus-generator</artifactId>-->
  112. <!--<version>3.2.0</version>-->
  113. <!--</dependency>-->
  114. <dependency>
  115. <groupId>org.apache.velocity</groupId>
  116. <artifactId>velocity-engine-core</artifactId>
  117. <version>${velocity.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.projectlombok</groupId>
  121. <artifactId>lombok</artifactId>
  122. <version>${projectlombok.version}</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.mybatis.spring.boot</groupId>
  127. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  128. <version>${mybatis-spring.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.google.zxing</groupId>
  132. <artifactId>core</artifactId>
  133. <version>${google.zxing.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.google.zxing</groupId>
  137. <artifactId>javase</artifactId>
  138. <version>${google.zxing.version}</version>
  139. </dependency>
  140. <!--mysql驱动-->
  141. <dependency>
  142. <groupId>mysql</groupId>
  143. <artifactId>mysql-connector-java</artifactId>
  144. <version>${mysql.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.alibaba</groupId>
  148. <artifactId>druid-spring-boot-starter</artifactId>
  149. <version>${druid.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.commons</groupId>
  153. <artifactId>commons-pool2</artifactId>
  154. <version>${commons-pool2.version}</version>
  155. </dependency>
  156. <!--fastjson-->
  157. <dependency>
  158. <groupId>com.alibaba</groupId>
  159. <artifactId>fastjson</artifactId>
  160. <version>${fastjson.version}</version>
  161. </dependency>
  162. <!--okhttp3-->
  163. <dependency>
  164. <groupId>com.squareup.okhttp3</groupId>
  165. <artifactId>okhttp</artifactId>
  166. <version>${okhttp3.version}</version>
  167. </dependency>
  168. <!--swagger接口文档框架-->
  169. <dependency>
  170. <groupId>io.springfox</groupId>
  171. <artifactId>springfox-swagger2</artifactId>
  172. <version>${swagger.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>io.springfox</groupId>
  176. <artifactId>springfox-swagger-ui</artifactId>
  177. <version>${swagger.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.github.xiaoymin</groupId>
  181. <artifactId>swagger-bootstrap-ui</artifactId>
  182. <version>${swagger-bootstrap.version}</version>
  183. </dependency>
  184. <!-- 支持 @ConfigurationProperties 注解 -->
  185. <dependency>
  186. <groupId>org.springframework.boot</groupId>
  187. <artifactId>spring-boot-configuration-processor</artifactId>
  188. <optional>true</optional>
  189. </dependency>
  190. <!-- fix swagger input报错-->
  191. <dependency>
  192. <groupId>io.swagger</groupId>
  193. <artifactId>swagger-annotations</artifactId>
  194. <version>${io-swagger.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>io.swagger</groupId>
  198. <artifactId>swagger-models</artifactId>
  199. <version>${io-swagger.version}</version>
  200. </dependency>
  201. <!--更换undertow容器-->
  202. <dependency>
  203. <groupId>org.springframework.boot</groupId>
  204. <artifactId>spring-boot-starter-undertow</artifactId>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.bouncycastle</groupId>
  208. <artifactId>bcprov-jdk15on</artifactId>
  209. <version>${bcprov-jdk15on.version}</version>
  210. <scope>compile</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>net.coobird</groupId>
  214. <artifactId>thumbnailator</artifactId>
  215. <version>${thumbnailator.version}</version>
  216. <scope>compile</scope>
  217. </dependency>
  218. <dependency>
  219. <groupId>io.jsonwebtoken</groupId>
  220. <artifactId>jjwt</artifactId>
  221. <version>${io.jsonwebtoken.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>com.aliyun.oss</groupId>
  225. <artifactId>aliyun-sdk-oss</artifactId>
  226. <version>${aliyun-sdk-oss.version}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.apache.httpcomponents</groupId>
  230. <artifactId>httpclient</artifactId>
  231. <version>${httpclient.version}</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.httpcomponents</groupId>
  235. <artifactId>httpmime</artifactId>
  236. <version>${httpclient.version}</version>
  237. </dependency>
  238. <!--模板组件-->
  239. <!--<dependency>-->
  240. <!--<groupId>org.springframework.boot</groupId>-->
  241. <!--<artifactId>spring-boot-starter-thymeleaf</artifactId>-->
  242. <!--<version>${thymeleaf.version}</version>-->
  243. <!--</dependency>-->
  244. <!--模板组件END-->
  245. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  246. <dependency>
  247. <groupId>commons-codec</groupId>
  248. <artifactId>commons-codec</artifactId>
  249. <version>${commons-codec.version}</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>com.aliyun</groupId>
  253. <artifactId>aliyun-java-sdk-core</artifactId>
  254. <version>${aliyun-sdk-core.version}</version>
  255. </dependency>
  256. <dependency>
  257. <groupId>com.alibaba.cloud</groupId>
  258. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  259. <version>2.1.0.RELEASE</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>com.alibaba.cloud</groupId>
  263. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  264. <version>2.1.0.RELEASE</version>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.springframework.cloud</groupId>
  268. <artifactId>spring-cloud-starter-openfeign</artifactId>
  269. <version>2.1.3.RELEASE</version>
  270. </dependency>
  271. <dependency>
  272. <groupId>net.logstash.logback</groupId>
  273. <artifactId>logstash-logback-encoder</artifactId>
  274. <version>${logstash.version}</version>
  275. </dependency>
  276. <dependency>
  277. <groupId>com.github.wxpay</groupId>
  278. <artifactId>wxpay-sdk</artifactId>
  279. <version>${wxpay-sdk.version}</version>
  280. </dependency>
  281. <!--企业微信api-->
  282. <dependency>
  283. <groupId>com.github.binarywang</groupId>
  284. <artifactId>weixin-java-cp</artifactId>
  285. <version>${weixin-java.version}</version>
  286. </dependency>
  287. <!-- 微信支付 -->
  288. <dependency>
  289. <groupId>com.github.binarywang</groupId>
  290. <artifactId>weixin-java-pay</artifactId>
  291. <version>${weixin-java.version}</version>
  292. </dependency>
  293. <!-- 微信小程序 -->
  294. <dependency>
  295. <groupId>com.github.binarywang</groupId>
  296. <artifactId>weixin-java-miniapp</artifactId>
  297. <version>${weixin-java.version}</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>com.github.binarywang</groupId>
  301. <artifactId>weixin-java-mp</artifactId>
  302. <version>${weixin-java.version}</version>
  303. </dependency>
  304. <!--hutool-->
  305. <dependency>
  306. <groupId>cn.hutool</groupId>
  307. <artifactId>hutool-all</artifactId>
  308. <version>${hutool-all.version}</version>
  309. </dependency>
  310. <!-- 校验 -->
  311. <dependency>
  312. <groupId>org.springframework.boot</groupId>
  313. <artifactId>spring-boot-starter-validation</artifactId>
  314. </dependency>
  315. <!--单元测试的依赖-->
  316. <dependency>
  317. <groupId>junit</groupId>
  318. <artifactId>junit</artifactId>
  319. <version>${junit.version}</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>com.sun.mail</groupId>
  323. <artifactId>javax.mail</artifactId>
  324. <version>1.5.5</version>
  325. </dependency>
  326. </dependencies>
  327. <profiles>
  328. <profile>
  329. <!-- 本地开发环境 -->
  330. <id>dev</id>
  331. <properties>
  332. <profiles.active>dev</profiles.active>
  333. </properties>
  334. <activation>
  335. <!-- 设置默认激活这个配置 -->
  336. <activeByDefault>true</activeByDefault>
  337. </activation>
  338. </profile>
  339. <profile>
  340. <!-- 测试环境 -->
  341. <id>test</id>
  342. <properties>
  343. <profiles.active>test</profiles.active>
  344. </properties>
  345. </profile>
  346. <profile>
  347. <!-- 正式环境 -->
  348. <id>prd</id>
  349. <properties>
  350. <profiles.active>prd</profiles.active>
  351. </properties>
  352. </profile>
  353. </profiles>
  354. <build>
  355. <plugins>
  356. <plugin>
  357. <groupId>org.springframework.boot</groupId>
  358. <artifactId>spring-boot-maven-plugin</artifactId>
  359. <!-- <configuration>-->
  360. <!-- <jvmArguments>-->
  361. <!-- -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=9090-->
  362. <!-- </jvmArguments>-->
  363. <!-- </configuration>-->
  364. </plugin>
  365. <plugin>
  366. <groupId>com.plus.plugin</groupId>
  367. <artifactId>plus-maven-plugin</artifactId>
  368. <version>5.0.0-SNAPSHOT</version>
  369. <configuration>
  370. <configPath>src/main/resources/generator-${profiles.active}.properties</configPath>
  371. </configuration>
  372. </plugin>
  373. </plugins>
  374. </build>
  375. <repositories>
  376. <repository>
  377. <id>nexus</id>
  378. <name>Releases</name>
  379. <url>http://121.43.111.127:8081/repository/maven-public</url>
  380. <releases>
  381. <enabled>true</enabled>
  382. </releases>
  383. <!--snapshots默认是关闭的,需要开启 -->
  384. <snapshots>
  385. <enabled>true</enabled>
  386. </snapshots>
  387. </repository>
  388. </repositories>
  389. <pluginRepositories>
  390. <pluginRepository>
  391. <id>nexus</id>
  392. <name>Releases</name>
  393. <url>http://121.43.111.127:8081/repository/maven-public</url>
  394. </pluginRepository>
  395. </pluginRepositories>
  396. </project>