pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  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. <artifactId>dcp</artifactId>
  7. <groupId>com.geidco</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.geidco.dcp</groupId>
  11. <artifactId>dcp-nationregioncomittee-service</artifactId>
  12. <!--<version>0.0.1-SNAPSHOT</version>-->
  13. <name>dcp-nationregioncomittee-service</name>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.apache.ant</groupId>
  22. <artifactId>ant</artifactId>
  23. <version>1.10.5</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.afterturn</groupId>
  27. <artifactId>easypoi-spring-boot-starter</artifactId>
  28. <version>4.2.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>net.coobird</groupId>
  32. <artifactId>thumbnailator</artifactId>
  33. <version>0.4.13</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>org.apache.logging.log4j</groupId>
  45. <artifactId>log4j-to-slf4j</artifactId>
  46. </exclusion>
  47. <exclusion>
  48. <groupId>org.apache.logging.log4j</groupId>
  49. <artifactId>log4j-api</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.apache.logging.log4j</groupId>
  59. <artifactId>log4j-to-slf4j</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.apache.logging.log4j</groupId>
  63. <artifactId>log4j-api</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.cloud</groupId>
  69. <artifactId>spring-cloud-starter-openfeign</artifactId>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>org.apache.logging.log4j</groupId>
  73. <artifactId>log4j-to-slf4j</artifactId>
  74. </exclusion>
  75. <exclusion>
  76. <groupId>org.apache.logging.log4j</groupId>
  77. <artifactId>log4j-api</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-test</artifactId>
  84. <scope>test</scope>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>org.apache.logging.log4j</groupId>
  88. <artifactId>log4j-to-slf4j</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>org.apache.logging.log4j</groupId>
  92. <artifactId>log4j-api</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-web</artifactId>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>org.apache.logging.log4j</groupId>
  102. <artifactId>log4j-to-slf4j</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>org.apache.logging.log4j</groupId>
  106. <artifactId>log4j-api</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  111. <dependency>
  112. <groupId>com.squareup.okhttp3</groupId>
  113. <artifactId>okhttp</artifactId>
  114. <version>3.4.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.cloud</groupId>
  118. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  119. <exclusions>
  120. <exclusion>
  121. <groupId>org.apache.logging.log4j</groupId>
  122. <artifactId>log4j-to-slf4j</artifactId>
  123. </exclusion>
  124. <exclusion>
  125. <groupId>org.apache.logging.log4j</groupId>
  126. <artifactId>log4j-api</artifactId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.mybatis.spring.boot</groupId>
  132. <artifactId>mybatis-spring-boot-starter</artifactId>
  133. <exclusions>
  134. <exclusion>
  135. <groupId>org.apache.logging.log4j</groupId>
  136. <artifactId>log4j-to-slf4j</artifactId>
  137. </exclusion>
  138. <exclusion>
  139. <groupId>org.apache.logging.log4j</groupId>
  140. <artifactId>log4j-api</artifactId>
  141. </exclusion>
  142. </exclusions>
  143. </dependency>
  144. <dependency>
  145. <groupId>mysql</groupId>
  146. <artifactId>mysql-connector-java</artifactId>
  147. <scope>runtime</scope>
  148. </dependency>
  149. <!-- alibaba的druid数据库连接池 -->
  150. <dependency>
  151. <groupId>com.alibaba</groupId>
  152. <artifactId>druid-spring-boot-starter</artifactId>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.boot</groupId>
  156. <artifactId>spring-boot-starter-websocket</artifactId>
  157. <exclusions>
  158. <exclusion>
  159. <groupId>org.apache.logging.log4j</groupId>
  160. <artifactId>log4j-to-slf4j</artifactId>
  161. </exclusion>
  162. <exclusion>
  163. <groupId>org.apache.logging.log4j</groupId>
  164. <artifactId>log4j-api</artifactId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.xlkh</groupId>
  170. <artifactId>cloud-platform-common</artifactId>
  171. <exclusions>
  172. <exclusion>
  173. <groupId>org.apache.logging.log4j</groupId>
  174. <artifactId>log4j-to-slf4j</artifactId>
  175. </exclusion>
  176. <exclusion>
  177. <groupId>org.apache.logging.log4j</groupId>
  178. <artifactId>log4j-api</artifactId>
  179. </exclusion>
  180. </exclusions>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.geidco</groupId>
  184. <artifactId>dcp-common</artifactId>
  185. <version>1.0-SNAPSHOT</version>
  186. <exclusions>
  187. <exclusion>
  188. <groupId>org.apache.poi</groupId>
  189. <artifactId>poi-ooxml</artifactId>
  190. </exclusion>
  191. <exclusion>
  192. <groupId>org.apache.poi</groupId>
  193. <artifactId>poi-ooxml-schemas</artifactId>
  194. </exclusion>
  195. <exclusion>
  196. <groupId>org.apache.poi</groupId>
  197. <artifactId>poi-excelant</artifactId>
  198. </exclusion>
  199. <exclusion>
  200. <groupId>org.apache.poi</groupId>
  201. <artifactId>poi-scratchpad</artifactId>
  202. </exclusion>
  203. <exclusion>
  204. <groupId>org.apache.poi</groupId>
  205. <artifactId>poi</artifactId>
  206. </exclusion>
  207. <exclusion>
  208. <groupId>org.apache.logging.log4j</groupId>
  209. <artifactId>log4j-to-slf4j</artifactId>
  210. </exclusion>
  211. <exclusion>
  212. <groupId>org.apache.logging.log4j</groupId>
  213. <artifactId>log4j-api</artifactId>
  214. </exclusion>
  215. </exclusions>
  216. </dependency>
  217. <!-- redis相关依赖包 -->
  218. <dependency>
  219. <groupId>org.springframework.boot</groupId>
  220. <artifactId>spring-boot-starter-data-redis</artifactId>
  221. <exclusions>
  222. <exclusion>
  223. <groupId>org.apache.logging.log4j</groupId>
  224. <artifactId>log4j-to-slf4j</artifactId>
  225. </exclusion>
  226. <exclusion>
  227. <groupId>org.apache.logging.log4j</groupId>
  228. <artifactId>log4j-api</artifactId>
  229. </exclusion>
  230. </exclusions>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.springframework.cloud</groupId>
  234. <artifactId>spring-cloud-starter-oauth2</artifactId>
  235. <exclusions>
  236. <exclusion>
  237. <groupId>org.apache.logging.log4j</groupId>
  238. <artifactId>log4j-to-slf4j</artifactId>
  239. </exclusion>
  240. <exclusion>
  241. <groupId>org.apache.logging.log4j</groupId>
  242. <artifactId>log4j-api</artifactId>
  243. </exclusion>
  244. </exclusions>
  245. </dependency>
  246. <dependency>
  247. <groupId>de.codecentric</groupId>
  248. <artifactId>spring-boot-admin-starter-client</artifactId>
  249. <version>2.0.2</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.slf4j</groupId>
  253. <artifactId>slf4j-log4j12</artifactId>
  254. </dependency>
  255. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  256. <dependency>
  257. <groupId>com.belerweb</groupId>
  258. <artifactId>pinyin4j</artifactId>
  259. <version>2.5.1</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>com.belerweb</groupId>
  263. <artifactId>pinyin4j</artifactId>
  264. <version>RELEASE</version>
  265. </dependency>
  266. <!--pdf包 -->
  267. <dependency>
  268. <groupId>org.apache.pdfbox</groupId>
  269. <artifactId>fontbox</artifactId>
  270. <version>2.0.0</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.apache.pdfbox</groupId>
  274. <artifactId>jempbox</artifactId>
  275. <version>1.8.11</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>org.apache.pdfbox</groupId>
  279. <artifactId>xmpbox</artifactId>
  280. <version>2.0.0</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>org.apache.pdfbox</groupId>
  284. <artifactId>preflight</artifactId>
  285. <version>2.0.0</version>
  286. </dependency>
  287. <dependency>
  288. <groupId>org.apache.pdfbox</groupId>
  289. <artifactId>pdfbox-tools</artifactId>
  290. <version>2.0.0</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>com.github.ulisesbocchio</groupId>
  294. <artifactId>jasypt-spring-boot-starter</artifactId>
  295. <version>2.1.1</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>io.springfox</groupId>
  299. <artifactId>springfox-swagger2</artifactId>
  300. <version>2.9.2</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>com.github.xiaoymin</groupId>
  304. <artifactId>swagger-bootstrap-ui</artifactId>
  305. <version>1.9.6</version>
  306. </dependency>
  307. <!-- 分页插件 -->
  308. <dependency>
  309. <groupId>com.github.pagehelper</groupId>
  310. <artifactId>pagehelper-spring-boot-starter</artifactId>
  311. <version>1.2.5</version>
  312. </dependency>
  313. </dependencies>
  314. <build>
  315. <plugins>
  316. <plugin>
  317. <groupId>org.springframework.boot</groupId>
  318. <artifactId>spring-boot-maven-plugin</artifactId>
  319. <configuration>
  320. <mainClass>com.geidco.dcp.DcpNationregioncomitteeServiceApplication</mainClass>
  321. <layout>ZIP</layout>
  322. </configuration>
  323. <executions>
  324. <execution>
  325. <goals>
  326. <goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
  327. </goals>
  328. </execution>
  329. </executions>
  330. </plugin>
  331. </plugins>
  332. </build>
  333. </project>