pom.xml 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>dcp</artifactId>
  7. <groupId>com.geidco</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>dcp-meeting-service</artifactId>
  12. <name>dcp-meeting-service</name>
  13. <!-- FIXME change it to the project's website -->
  14. <url>http://www.example.com</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.github.binarywang</groupId>
  23. <artifactId>weixin-java-mp</artifactId>
  24. <!-- <version>2.7.0</version>-->
  25. <!-- <version>2.7.7</version>-->
  26. <version>4.5.0</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
  29. <dependency>
  30. <groupId>net.coobird</groupId>
  31. <artifactId>thumbnailator</artifactId>
  32. <version>0.4.13</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.ant</groupId>
  36. <artifactId>ant</artifactId>
  37. <version>1.10.5</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.afterturn</groupId>
  41. <artifactId>easypoi-spring-boot-starter</artifactId>
  42. <version>4.2.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.pagehelper</groupId>
  46. <artifactId>pagehelper-spring-boot-starter</artifactId>
  47. <version>1.2.5</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.apache.logging.log4j</groupId>
  55. <artifactId>log4j-to-slf4j</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>org.apache.logging.log4j</groupId>
  59. <artifactId>log4j-api</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-actuator</artifactId>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>org.apache.logging.log4j</groupId>
  69. <artifactId>log4j-to-slf4j</artifactId>
  70. </exclusion>
  71. <exclusion>
  72. <groupId>org.apache.logging.log4j</groupId>
  73. <artifactId>log4j-api</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.cloud</groupId>
  79. <artifactId>spring-cloud-starter-openfeign</artifactId>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.apache.logging.log4j</groupId>
  83. <artifactId>log4j-to-slf4j</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>org.apache.logging.log4j</groupId>
  87. <artifactId>log4j-api</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-test</artifactId>
  94. <scope>test</scope>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>org.apache.logging.log4j</groupId>
  98. <artifactId>log4j-to-slf4j</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>org.apache.logging.log4j</groupId>
  102. <artifactId>log4j-api</artifactId>
  103. </exclusion>
  104. </exclusions>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-web</artifactId>
  109. <exclusions>
  110. <exclusion>
  111. <groupId>org.apache.logging.log4j</groupId>
  112. <artifactId>log4j-to-slf4j</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>org.apache.logging.log4j</groupId>
  116. <artifactId>log4j-api</artifactId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  121. <dependency>
  122. <groupId>com.squareup.okhttp3</groupId>
  123. <artifactId>okhttp</artifactId>
  124. <version>3.4.1</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.cloud</groupId>
  128. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  129. <exclusions>
  130. <exclusion>
  131. <groupId>org.apache.logging.log4j</groupId>
  132. <artifactId>log4j-to-slf4j</artifactId>
  133. </exclusion>
  134. <exclusion>
  135. <groupId>org.apache.logging.log4j</groupId>
  136. <artifactId>log4j-api</artifactId>
  137. </exclusion>
  138. </exclusions>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.mybatis.spring.boot</groupId>
  142. <artifactId>mybatis-spring-boot-starter</artifactId>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>org.apache.logging.log4j</groupId>
  146. <artifactId>log4j-to-slf4j</artifactId>
  147. </exclusion>
  148. <exclusion>
  149. <groupId>org.apache.logging.log4j</groupId>
  150. <artifactId>log4j-api</artifactId>
  151. </exclusion>
  152. </exclusions>
  153. </dependency>
  154. <dependency>
  155. <groupId>mysql</groupId>
  156. <artifactId>mysql-connector-java</artifactId>
  157. <scope>runtime</scope>
  158. </dependency>
  159. <!-- alibaba的druid数据库连接池 -->
  160. <dependency>
  161. <groupId>com.alibaba</groupId>
  162. <artifactId>druid-spring-boot-starter</artifactId>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.springframework.boot</groupId>
  166. <artifactId>spring-boot-starter-websocket</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.xlkh</groupId>
  170. <artifactId>cloud-platform-common</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.geidco</groupId>
  174. <artifactId>dcp-common</artifactId>
  175. <version>1.0-SNAPSHOT</version>
  176. <exclusions>
  177. <exclusion>
  178. <groupId>org.apache.poi</groupId>
  179. <artifactId>poi-ooxml</artifactId>
  180. </exclusion>
  181. <exclusion>
  182. <groupId>org.apache.poi</groupId>
  183. <artifactId>poi-ooxml-schemas</artifactId>
  184. </exclusion>
  185. <exclusion>
  186. <groupId>org.apache.poi</groupId>
  187. <artifactId>poi-excelant</artifactId>
  188. </exclusion>
  189. <exclusion>
  190. <groupId>org.apache.poi</groupId>
  191. <artifactId>poi-scratchpad</artifactId>
  192. </exclusion>
  193. <exclusion>
  194. <groupId>org.apache.poi</groupId>
  195. <artifactId>poi</artifactId>
  196. </exclusion>
  197. </exclusions>
  198. </dependency>
  199. <!-- redis相关依赖包 -->
  200. <dependency>
  201. <groupId>org.springframework.boot</groupId>
  202. <artifactId>spring-boot-starter-data-redis</artifactId>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.springframework.cloud</groupId>
  206. <artifactId>spring-cloud-starter-oauth2</artifactId>
  207. </dependency>
  208. <dependency>
  209. <groupId>de.codecentric</groupId>
  210. <artifactId>spring-boot-admin-starter-client</artifactId>
  211. <version>2.0.2</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.slf4j</groupId>
  215. <artifactId>slf4j-log4j12</artifactId>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.projectlombok</groupId>
  219. <artifactId>lombok</artifactId>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.github.ulisesbocchio</groupId>
  223. <artifactId>jasypt-spring-boot-starter</artifactId>
  224. <version>2.1.1</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.springframework.boot</groupId>
  228. <artifactId>spring-boot-starter-mail</artifactId>
  229. <version>2.1.0.RELEASE</version>
  230. </dependency>
  231. </dependencies>
  232. <build>
  233. <plugins>
  234. <plugin>
  235. <groupId>org.springframework.boot</groupId>
  236. <artifactId>spring-boot-maven-plugin</artifactId>
  237. <configuration>
  238. <mainClass>com.geidco.dcp.DcpmeetingServiceApplication</mainClass>
  239. <layout>ZIP</layout>
  240. </configuration>
  241. <executions>
  242. <execution>
  243. <goals>
  244. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  245. </goals>
  246. </execution>
  247. </executions>
  248. </plugin>
  249. </plugins>
  250. </build>
  251. </project>