pom.xml 12 KB

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