pom.xml 13 KB

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