pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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>jiasm-syncdata</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>jiasm-syncdata</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. <!-- <version>RELEASE</version>-->
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-devtools</artifactId>
  42. <scope>runtime</scope>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.aliyun.oss</groupId>
  52. <artifactId>aliyun-sdk-oss</artifactId>
  53. <version>3.8.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.mybatis.spring.boot</groupId>
  57. <artifactId>mybatis-spring-boot-starter</artifactId>
  58. <version>2.1.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. <version>3.1.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-generator</artifactId>
  68. <version>3.1.2</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.velocity</groupId>
  72. <artifactId>velocity-engine-core</artifactId>
  73. <version>2.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. <version>1.18.8</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.mybatis.spring.boot</groupId>
  83. <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
  84. <version>2.1.0</version>
  85. </dependency>
  86. <!--mysql驱动-->
  87. <dependency>
  88. <groupId>mysql</groupId>
  89. <artifactId>mysql-connector-java</artifactId>
  90. <version>8.0.17</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.aliyun</groupId>
  94. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  95. <version>2.0.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid-spring-boot-starter</artifactId>
  100. <version>1.1.21</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-pool2</artifactId>
  105. <version>2.8.0</version>
  106. </dependency>
  107. <!--fastjson-->
  108. <dependency>
  109. <groupId>com.alibaba</groupId>
  110. <artifactId>fastjson</artifactId>
  111. <version>1.2.59</version>
  112. </dependency>
  113. <!--okhttp3-->
  114. <dependency>
  115. <groupId>com.squareup.okhttp3</groupId>
  116. <artifactId>okhttp</artifactId>
  117. <version>4.0.1</version>
  118. </dependency>
  119. <!--swagger接口文档框架-->
  120. <dependency>
  121. <groupId>io.springfox</groupId>
  122. <artifactId>springfox-swagger2</artifactId>
  123. <version>2.9.2</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>io.springfox</groupId>
  127. <artifactId>springfox-swagger-ui</artifactId>
  128. <version>2.9.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.github.xiaoymin</groupId>
  132. <artifactId>swagger-bootstrap-ui</artifactId>
  133. <version>1.9.4</version>
  134. </dependency>
  135. <!-- 支持 @ConfigurationProperties 注解 -->
  136. <dependency>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-configuration-processor</artifactId>
  139. <optional>true</optional>
  140. </dependency>
  141. <!-- fix swagger input报错-->
  142. <dependency>
  143. <groupId>io.swagger</groupId>
  144. <artifactId>swagger-annotations</artifactId>
  145. <version>1.5.22</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>io.swagger</groupId>
  149. <artifactId>swagger-models</artifactId>
  150. <version>1.5.22</version>
  151. </dependency>
  152. <!--更换undertow容器-->
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-undertow</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.bouncycastle</groupId>
  159. <artifactId>bcprov-jdk15on</artifactId>
  160. <version>1.60</version>
  161. <scope>compile</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.poi</groupId>
  165. <artifactId>poi</artifactId>
  166. <version>4.1.2</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>eu.bitwalker</groupId>
  170. <artifactId>UserAgentUtils</artifactId>
  171. <version>1.21</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>io.jsonwebtoken</groupId>
  175. <artifactId>jjwt</artifactId>
  176. <version>0.6.0</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.aliyun.oss</groupId>
  180. <artifactId>aliyun-sdk-oss</artifactId>
  181. <version>3.8.1</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.springframework</groupId>
  185. <artifactId>spring-mock</artifactId>
  186. <version>2.0.8</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.apache.httpcomponents</groupId>
  190. <artifactId>httpclient</artifactId>
  191. <version>4.4</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.apache.httpcomponents</groupId>
  195. <artifactId>httpmime</artifactId>
  196. <version>4.4</version>
  197. </dependency>
  198. <!--模板组件-->
  199. <dependency>
  200. <groupId>org.springframework.boot</groupId>
  201. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  202. <version>2.2.6.RELEASE</version>
  203. </dependency>
  204. <!--模板组件END-->
  205. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  206. <dependency>
  207. <groupId>commons-codec</groupId>
  208. <artifactId>commons-codec</artifactId>
  209. <version>1.9</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.aliyun</groupId>
  213. <artifactId>aliyun-java-sdk-core</artifactId>
  214. <version>4.0.3</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.springframework.cloud</groupId>
  218. <artifactId>spring-cloud-starter-openfeign</artifactId>
  219. <version>2.1.3.RELEASE</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>net.logstash.logback</groupId>
  223. <artifactId>logstash-logback-encoder</artifactId>
  224. <version>6.3</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>io.github.biezhi</groupId>
  228. <artifactId>TinyPinyin</artifactId>
  229. <version>2.0.3.RELEASE</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>com.belerweb</groupId>
  233. <artifactId>pinyin4j</artifactId>
  234. <version>2.5.1</version>
  235. </dependency>
  236. <dependency>
  237. <groupId>com.github.stuxuhai</groupId>
  238. <artifactId>jpinyin</artifactId>
  239. <version>1.1.8</version>
  240. </dependency>
  241. <!-- hutool工具 -->
  242. <dependency>
  243. <groupId>cn.hutool</groupId>
  244. <artifactId>hutool-all</artifactId>
  245. <version>5.8.0.M4</version>
  246. </dependency>
  247. <!-- 校验工具 -->
  248. <dependency>
  249. <groupId>org.hibernate</groupId>
  250. <artifactId>hibernate-validator</artifactId>
  251. <version>6.1.6.Final</version>
  252. </dependency>
  253. <!--websocket-->
  254. <dependency>
  255. <groupId>org.springframework.boot</groupId>
  256. <artifactId>spring-boot-starter-websocket</artifactId>
  257. </dependency>
  258. <!--freemarker制作Html邮件模板依赖包-->
  259. <dependency>
  260. <groupId>org.springframework.boot</groupId>
  261. <artifactId>spring-boot-starter-freemarker</artifactId>
  262. </dependency>
  263. <!--企业微信api-->
  264. <dependency>
  265. <groupId>com.github.binarywang</groupId>
  266. <artifactId>weixin-java-cp</artifactId>
  267. <version>4.1.0</version>
  268. </dependency>
  269. </dependencies>
  270. <profiles>
  271. <profile>
  272. <!-- 本地开发环境 -->
  273. <id>dev</id>
  274. <properties>
  275. <profiles.active>dev</profiles.active>
  276. </properties>
  277. <activation>
  278. <!-- 设置默认激活这个配置 -->
  279. <activeByDefault>true</activeByDefault>
  280. </activation>
  281. </profile>
  282. <profile>
  283. <!-- 测试环境 -->
  284. <id>test</id>
  285. <properties>
  286. <profiles.active>test</profiles.active>
  287. </properties>
  288. </profile>
  289. <profile>
  290. <!-- 正式环境 -->
  291. <id>prd</id>
  292. <properties>
  293. <profiles.active>prd</profiles.active>
  294. </properties>
  295. </profile>
  296. </profiles>
  297. <build>
  298. <plugins>
  299. <plugin>
  300. <groupId>org.springframework.boot</groupId>
  301. <artifactId>spring-boot-maven-plugin</artifactId>
  302. <version>2.3.10.RELEASE</version>
  303. </plugin>
  304. <plugin>
  305. <groupId>com.plus.plugin</groupId>
  306. <artifactId>plus-maven-plugin</artifactId>
  307. <version>5.0.0-SNAPSHOT</version>
  308. <configuration>
  309. <configPath>src/main/resources/generator-${profiles.active}.properties</configPath>
  310. </configuration>
  311. </plugin>
  312. </plugins>
  313. </build>
  314. <repositories>
  315. <repository>
  316. <id>nexus</id>
  317. <name>Releases</name>
  318. <url>http://121.43.111.127:8081/repository/maven-public</url>
  319. <releases>
  320. <enabled>true</enabled>
  321. </releases>
  322. <!--snapshots默认是关闭的,需要开启 -->
  323. <snapshots>
  324. <enabled>true</enabled>
  325. </snapshots>
  326. </repository>
  327. <repository>
  328. <id>com.e-iceblue</id>
  329. <name>e-iceblue</name>
  330. <url>https://repo.e-iceblue.cn/repository/maven-public/</url>
  331. </repository>
  332. </repositories>
  333. <pluginRepositories>
  334. <pluginRepository>
  335. <id>nexus</id>
  336. <name>Releases</name>
  337. <url>http://121.43.111.127:8081/repository/maven-public</url>
  338. </pluginRepository>
  339. </pluginRepositories>
  340. </project>