pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>kkFileView-parent</artifactId>
  8. <groupId>cn.keking</groupId>
  9. <version>4.1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>kkFileView</artifactId>
  12. <dependencyManagement>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-dependencies</artifactId>
  17. <version>${spring.boot.version}</version>
  18. <scope>import</scope>
  19. <type>pom</type>
  20. </dependency>
  21. </dependencies>
  22. </dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>cn.keking</groupId>
  26. <artifactId>office-plugin</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <!-- web start -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-tomcat</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-jetty</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-freemarker</artifactId>
  47. </dependency>
  48. <!-- web end -->
  49. <!-- poi start -->
  50. <dependency>
  51. <groupId>org.apache.poi</groupId>
  52. <artifactId>poi</artifactId>
  53. <version>${poi.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.poi</groupId>
  57. <artifactId>poi-scratchpad</artifactId>
  58. <version>${poi.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.poi</groupId>
  62. <artifactId>poi-ooxml</artifactId>
  63. <version>${poi.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>fr.opensagres.xdocreport</groupId>
  67. <artifactId>org.apache.poi.xwpf.converter.core</artifactId>
  68. <version>${xdocreport.version}</version>
  69. <exclusions>
  70. <exclusion>
  71. <artifactId>poi</artifactId>
  72. <groupId>org.apache.poi</groupId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>fr.opensagres.xdocreport</groupId>
  78. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  79. <version>${xdocreport.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>fr.opensagres.xdocreport</groupId>
  83. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  84. <version>${xdocreport.version}</version>
  85. </dependency>
  86. <!-- poi start -->
  87. <!-- 对 rar5 的支持 和其他众多压缩支持 可参考 package net.sf.sevenzipjbinding.ArchiveFormat; -->
  88. <dependency>
  89. <groupId>net.sf.sevenzipjbinding</groupId>
  90. <artifactId>sevenzipjbinding</artifactId>
  91. <version>${sevenzipjbinding.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>net.sf.sevenzipjbinding</groupId>
  95. <artifactId>sevenzipjbinding-all-platforms</artifactId>
  96. <version>${sevenzipjbinding.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.commons</groupId>
  100. <artifactId>commons-lang3</artifactId>
  101. <version>${commons-lang3.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.redisson</groupId>
  105. <artifactId>redisson</artifactId>
  106. <version>${redisson.version}</version>
  107. </dependency>
  108. <!-- 解压(apache) -->
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-compress</artifactId>
  112. <version>${commons-compress.version}</version>
  113. </dependency>
  114. <!-- 解压(rar)-->
  115. <dependency>
  116. <groupId>com.github.junrar</groupId>
  117. <artifactId>junrar</artifactId>
  118. <version>${junrar.version}</version>
  119. </dependency>
  120. <!-- 解压(7z)-->
  121. <dependency>
  122. <groupId>org.tukaani</groupId>
  123. <artifactId>xz</artifactId>
  124. <version>${tukaani.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>net.sourceforge.jchardet</groupId>
  128. <artifactId>jchardet</artifactId>
  129. <version>${jchardet.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>antlr</groupId>
  133. <artifactId>antlr</artifactId>
  134. <version>${antlr.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>commons-cli</groupId>
  138. <artifactId>commons-cli</artifactId>
  139. <version>${commons-cli.version}</version>
  140. </dependency>
  141. <!-- FTP -->
  142. <dependency>
  143. <groupId>commons-net</groupId>
  144. <artifactId>commons-net</artifactId>
  145. <version>${commons-net.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.thoughtworks.xstream</groupId>
  149. <artifactId>xstream</artifactId>
  150. <version>${xstream.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  154. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  155. <version>${concurrentlinkedhashmap.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.rocksdb</groupId>
  159. <artifactId>rocksdbjni</artifactId>
  160. <version>${rocksdb.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.pdfbox</groupId>
  164. <artifactId>pdfbox</artifactId>
  165. <version>${pdfbox.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.pdfbox</groupId>
  169. <artifactId>pdfbox-tools</artifactId>
  170. <version>${pdfbox.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.github.jai-imageio</groupId>
  174. <artifactId>jai-imageio-jpeg2000</artifactId>
  175. <version>${jai-imageio.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.github.jai-imageio</groupId>
  179. <artifactId>jai-imageio-core</artifactId>
  180. <version>${jai-imageio.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.pdfbox</groupId>
  184. <artifactId>jbig2-imageio</artifactId>
  185. <version>${jbig2-imageio.version}</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.aspose</groupId>
  189. <artifactId>aspose-cad</artifactId>
  190. <version>19.9</version>
  191. <scope>system</scope>
  192. <systemPath>${pom.basedir}/lib/aspose-cad-19.9.jar</systemPath>
  193. </dependency>
  194. <!-- 编码识别 -->
  195. <dependency>
  196. <groupId>cpdetector</groupId>
  197. <artifactId>cpdetector</artifactId>
  198. <version>1.04</version>
  199. <scope>system</scope>
  200. <systemPath>${pom.basedir}/lib/cpdetector-1.04.jar</systemPath>
  201. </dependency>
  202. <!-- url 规范化 -->
  203. <dependency>
  204. <groupId>io.mola.galimatias</groupId>
  205. <artifactId>galimatias</artifactId>
  206. <version>${galimatias.version}</version>
  207. </dependency>
  208. <!-- 以下是bytedeco 基于opencv ffmpeg封装的javacv,用于视频处理 -->
  209. <dependency>
  210. <groupId>org.bytedeco</groupId>
  211. <artifactId>javacv</artifactId>
  212. <version>${bytedeco.version}</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.bytedeco</groupId>
  216. <artifactId>javacpp</artifactId>
  217. <version>${bytedeco.version}</version>
  218. </dependency>
  219. <!-- 此版本中主要兼容linux和windows系统,如需兼容其他系统平台,请引入对应依赖即可 -->
  220. <dependency>
  221. <groupId>org.bytedeco</groupId>
  222. <artifactId>opencv</artifactId>
  223. <version>${opencv.version}</version>
  224. <classifier>linux-x86_64</classifier>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.bytedeco</groupId>
  228. <artifactId>opencv</artifactId>
  229. <version>${opencv.version}</version>
  230. <classifier>windows-x86_64</classifier>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.bytedeco</groupId>
  234. <artifactId>openblas</artifactId>
  235. <version>${openblas.version}</version>
  236. <classifier>linux-x86_64</classifier>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.bytedeco</groupId>
  240. <artifactId>openblas</artifactId>
  241. <version>${openblas.version}</version>
  242. <classifier>windows-x86_64</classifier>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.bytedeco</groupId>
  246. <artifactId>ffmpeg</artifactId>
  247. <version>${ffmpeg.version}</version>
  248. <classifier>linux-x86_64</classifier>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.bytedeco</groupId>
  252. <artifactId>ffmpeg</artifactId>
  253. <version>${ffmpeg.version}</version>
  254. <classifier>windows-x86_64</classifier>
  255. </dependency>
  256. <dependency>
  257. <groupId>com.lowagie</groupId>
  258. <artifactId>itext</artifactId>
  259. <version>${itext.version}</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>javax.media</groupId>
  263. <artifactId>jai_core</artifactId>
  264. <version>1.1.3</version>
  265. <scope>system</scope>
  266. <systemPath>${pom.basedir}/lib/jai_core-1.1.3.jar</systemPath>
  267. </dependency>
  268. <dependency>
  269. <groupId>javax.media</groupId>
  270. <artifactId>jai_codec</artifactId>
  271. <version>1.1.3</version>
  272. <scope>system</scope>
  273. <systemPath>${pom.basedir}/lib/jai_codec-1.1.3.jar</systemPath>
  274. </dependency>
  275. <!-- test dependency - start -->
  276. <dependency>
  277. <groupId>org.springframework.boot</groupId>
  278. <artifactId>spring-boot-starter-test</artifactId>
  279. <scope>test</scope>
  280. </dependency>
  281. <dependency>
  282. <groupId>commons-httpclient</groupId>
  283. <artifactId>commons-httpclient</artifactId>
  284. <version>${httpclient.version}</version>
  285. <scope>test</scope>
  286. <exclusions>
  287. <exclusion>
  288. <artifactId>commons-logging</artifactId>
  289. <groupId>commons-logging</groupId>
  290. </exclusion>
  291. </exclusions>
  292. </dependency>
  293. <!-- test dependency - end -->
  294. </dependencies>
  295. <build>
  296. <resources>
  297. <resource>
  298. <directory>src/main/resources</directory>
  299. <includes>
  300. <include>**/*</include>
  301. </includes>
  302. <filtering>false</filtering>
  303. </resource>
  304. <resource>
  305. <directory>src/main/config</directory>
  306. <filtering>true</filtering>
  307. </resource>
  308. </resources>
  309. <plugins>
  310. <plugin>
  311. <groupId>org.springframework.boot</groupId>
  312. <artifactId>spring-boot-maven-plugin</artifactId>
  313. <version>${spring.boot.version}</version>
  314. <configuration>
  315. <includeSystemScope>true</includeSystemScope>
  316. </configuration>
  317. <executions>
  318. <execution>
  319. <goals>
  320. <goal>repackage</goal>
  321. </goals>
  322. </execution>
  323. </executions>
  324. </plugin>
  325. <plugin>
  326. <groupId>org.apache.maven.plugins</groupId>
  327. <artifactId>maven-assembly-plugin</artifactId>
  328. <version>3.4.2</version>
  329. <configuration>
  330. <appendAssemblyId>false</appendAssemblyId>
  331. <descriptors>
  332. <descriptor>src/main/assembly/dist-win32.xml</descriptor>
  333. <descriptor>src/main/assembly/dist-linux.xml</descriptor>
  334. </descriptors>
  335. </configuration>
  336. <executions>
  337. <execution>
  338. <id>make-assembly</id>
  339. <phase>package</phase>
  340. <goals>
  341. <goal>single</goal>
  342. </goals>
  343. </execution>
  344. </executions>
  345. </plugin>
  346. </plugins>
  347. </build>
  348. </project>