pom.xml 12 KB

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