pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>gw-cloud-platform-dcproj-pageoffice</artifactId>
  5. <groupId>cn.com.goldenwater</groupId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>gw-cloud-platform-dcproj-po-service-provincial</artifactId>
  10. <packaging>jar</packaging>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-data-solr</artifactId>
  15. </dependency>
  16. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  17. <dependency>
  18. <groupId>com.auth0</groupId>
  19. <artifactId>java-jwt</artifactId>
  20. <version>3.3.0</version>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
  23. <dependency>
  24. <groupId>io.jsonwebtoken</groupId>
  25. <artifactId>jjwt</artifactId>
  26. <version>0.9.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.data</groupId>
  30. <artifactId>spring-data-solr</artifactId>
  31. </dependency>
  32. <!-- 默认 starter 会加载 solrj 进来, 下面这个可不引-->
  33. <dependency>
  34. <groupId>org.apache.solr</groupId>
  35. <artifactId>solr-solrj</artifactId>
  36. <version>6.2.0</version>
  37. </dependency>
  38. <!-- <dependency>
  39. <groupId>org.apache.commons</groupId>
  40. <artifactId>commons-lang3</artifactId>
  41. <version>3.8.1</version>
  42. </dependency>-->
  43. <dependency>
  44. <groupId>net.sf.json-lib</groupId>
  45. <artifactId>json-lib</artifactId>
  46. <version>2.4</version>
  47. <classifier>jdk15</classifier>
  48. </dependency>
  49. <dependency>
  50. <groupId>commons-io</groupId>
  51. <artifactId>commons-io</artifactId>
  52. <version>2.5</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  55. <!-- <dependency>
  56. <groupId>org.apache.httpcomponents</groupId>
  57. <artifactId>httpclient</artifactId>
  58. <version>4.5.6</version>
  59. </dependency>-->
  60. <dependency>
  61. <groupId>com.belerweb</groupId>
  62. <artifactId>pinyin4j</artifactId>
  63. <version>2.5.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>cn.com.goldenwater</groupId>
  67. <artifactId>gw-cloud-util</artifactId>
  68. <version>0.0.1-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.com.goldenwater</groupId>
  72. <artifactId>gw-cloud-platform-dcproj-po-api</artifactId>
  73. <version>0.0.1-SNAPSHOT</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>cn.com.goldenwater</groupId>
  77. <artifactId>gw-cloud-platform-dcproj-po-dao</artifactId>
  78. <version>0.0.1-SNAPSHOT</version>
  79. </dependency>
  80. <!-- spring boot -->
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter</artifactId>
  84. <!-- 解决log4j-over-slf4j.jar,slf4j-log4j12.jar冲突-->
  85. <exclusions>
  86. <exclusion>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-logging</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-web</artifactId>
  95. <!-- use jetty to replace tomcat -->
  96. <exclusions>
  97. <exclusion>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-tomcat</artifactId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-jetty</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-test</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-aop</artifactId>
  115. </dependency>
  116. <!-- swagger -->
  117. <dependency>
  118. <groupId>org.apache.poi</groupId>
  119. <artifactId>poi</artifactId>
  120. <version>4.1.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.poi</groupId>
  124. <artifactId>poi-scratchpad</artifactId>
  125. <version>4.1.1</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>fr.opensagres.xdocreport</groupId>
  129. <artifactId>xdocreport</artifactId>
  130. <version>1.0.6</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi-ooxml-schemas</artifactId>
  135. <version>4.1.1</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.poi</groupId>
  139. <artifactId>ooxml-schemas</artifactId>
  140. <version>1.4</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.jsoup</groupId>
  144. <artifactId>jsoup</artifactId>
  145. <version>1.11.3</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>io.springfox</groupId>
  149. <artifactId>springfox-swagger2</artifactId>
  150. <version>${springfox.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>io.springfox</groupId>
  154. <artifactId>springfox-swagger-ui</artifactId>
  155. <version>${springfox.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>commons-beanutils</groupId>
  159. <artifactId>commons-beanutils</artifactId>
  160. <version>1.9.3</version>
  161. </dependency>
  162. <!-- <dependency>
  163. <groupId>com.alibaba</groupId>
  164. <artifactId>fastjson</artifactId>
  165. <version>1.2.4</version>
  166. </dependency>-->
  167. <dependency>
  168. <groupId>com.google.zxing</groupId>
  169. <artifactId>javase</artifactId>
  170. <version>3.0.0</version>
  171. </dependency>
  172. <!--<dependency>
  173. <groupId>net.sourceforge.pinyin4j</groupId>
  174. <artifactId>pinyin4j</artifactId>
  175. <version>2.5.0</version>
  176. </dependency>-->
  177. <!--<dependency>-->
  178. <!--<groupId>org.clojars.cbilson</groupId>-->
  179. <!--<artifactId>pinyin4j</artifactId>-->
  180. <!--<version>2.5.0</version>-->
  181. <!--</dependency>-->
  182. <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
  183. <dependency>
  184. <groupId>commons-lang</groupId>
  185. <artifactId>commons-lang</artifactId>
  186. <version>2.6</version>
  187. </dependency>
  188. <!-- excel -->
  189. <dependency>
  190. <groupId>org.apache.poi</groupId>
  191. <artifactId>poi-ooxml</artifactId>
  192. <version>4.1.1</version>
  193. </dependency>
  194. <!-- ant -->
  195. <dependency>
  196. <groupId>org.apache.ant</groupId>
  197. <artifactId>ant</artifactId>
  198. <version>1.9.7</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.springframework.boot</groupId>
  202. <artifactId>spring-boot-starter-data-redis</artifactId>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.freemarker</groupId>
  206. <artifactId>freemarker</artifactId>
  207. <version>2.3.27-incubating</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.springframework.boot</groupId>
  211. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  212. </dependency>
  213. <!--websocket-->
  214. <dependency>
  215. <groupId>org.springframework.boot</groupId>
  216. <artifactId>spring-boot-starter-websocket</artifactId>
  217. <version>2.1.8.RELEASE</version>
  218. </dependency>
  219. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
  220. <!-- <dependency>
  221. <groupId>com.fasterxml.jackson.core</groupId>
  222. <artifactId>jackson-annotations</artifactId>
  223. <version>2.9.4</version>
  224. </dependency>-->
  225. <dependency>
  226. <groupId>com.xylink</groupId>
  227. <artifactId>cloudsdk</artifactId>
  228. <version>2.24.0</version>
  229. </dependency>
  230. <!-- https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-core-asl -->
  231. <dependency>
  232. <groupId>org.codehaus.jackson</groupId>
  233. <artifactId>jackson-core-asl</artifactId>
  234. <version>1.9.13</version>
  235. </dependency>
  236. <!-- https://mvnrepository.com/artifact/org.codehaus.jackson/jackson-mapper-asl -->
  237. <dependency>
  238. <groupId>org.codehaus.jackson</groupId>
  239. <artifactId>jackson-mapper-asl</artifactId>
  240. <version>1.9.13</version>
  241. </dependency>
  242. <!-- 图片缩略图 -->
  243. <dependency>
  244. <groupId>net.coobird</groupId>
  245. <artifactId>thumbnailator</artifactId>
  246. <version>0.4.8</version>
  247. </dependency>
  248. <!--PageOfffice Maven私有库-->
  249. <dependency>
  250. <groupId>com.zhuozhengsoft</groupId>
  251. <artifactId>pageoffice</artifactId>
  252. <version>5.3.0.3</version>
  253. </dependency>
  254. <!-- https://mvnrepository.com/artifact/org.textmining/tm-extractors -->
  255. <!--<dependency>-->
  256. <!--<groupId>org.textmining</groupId>-->
  257. <!--<artifactId>tm-extractors</artifactId>-->
  258. <!--<version>0.4</version>-->
  259. <!--</dependency>-->
  260. <!--<dependency>-->
  261. <!--<groupId>e-iceblue</groupId>-->
  262. <!--<artifactId>spire.pdf</artifactId>-->
  263. <!--<version>2.2.0</version>-->
  264. <!--</dependency>-->
  265. <dependency>
  266. <groupId>mysql</groupId>
  267. <artifactId>mysql-connector-java</artifactId>
  268. <version>8.0.29</version>
  269. </dependency>
  270. </dependencies>
  271. <distributionManagement>
  272. <snapshotRepository>
  273. <id>gw-cloud</id>
  274. <url>http://nexus.goldenwater.com.cn/nexus/content/repositories/gw-cloud</url>
  275. </snapshotRepository>
  276. </distributionManagement>
  277. <build>
  278. <plugins>
  279. <!-- fat jar -->
  280. <plugin>
  281. <groupId>org.springframework.boot</groupId>
  282. <artifactId>spring-boot-maven-plugin</artifactId>
  283. <version>2.2.6.RELEASE</version>
  284. <executions>
  285. <execution>
  286. <goals>
  287. <goal>repackage</goal>
  288. </goals>
  289. </execution>
  290. </executions>
  291. </plugin>
  292. <plugin>
  293. <groupId>org.apache.maven.plugins</groupId>
  294. <artifactId>maven-surefire-plugin</artifactId>
  295. <configuration>
  296. <skip>true</skip>
  297. </configuration>
  298. </plugin>
  299. <plugin>
  300. <groupId>org.apache.maven.plugins</groupId>
  301. <artifactId>maven-compiler-plugin</artifactId>
  302. <configuration>
  303. <source>1.8</source>
  304. <target>1.8</target>
  305. </configuration>
  306. </plugin>
  307. </plugins>
  308. <defaultGoal>compile</defaultGoal>
  309. </build>
  310. <!--<repositories>-->
  311. <!--<repository>-->
  312. <!--<id>com.e-iceblue</id>-->
  313. <!--<name>e-iceblue</name>-->
  314. <!--<url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>-->
  315. <!--</repository>-->
  316. <!--</repositories>-->
  317. </project>