pom.xml 14 KB

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