pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  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.2.0</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>org.jodconverter</groupId>
  26. <artifactId>jodconverter-local</artifactId>
  27. <version>${jodconverter.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. <!-- 解压(rar)-->
  109. <dependency>
  110. <groupId>com.github.junrar</groupId>
  111. <artifactId>junrar</artifactId>
  112. <version>${junrar.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>net.sourceforge.jchardet</groupId>
  116. <artifactId>jchardet</artifactId>
  117. <version>${jchardet.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>antlr</groupId>
  121. <artifactId>antlr</artifactId>
  122. <version>${antlr.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>commons-cli</groupId>
  126. <artifactId>commons-cli</artifactId>
  127. <version>${commons-cli.version}</version>
  128. </dependency>
  129. <!-- FTP -->
  130. <dependency>
  131. <groupId>commons-net</groupId>
  132. <artifactId>commons-net</artifactId>
  133. <version>${commons-net.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.thoughtworks.xstream</groupId>
  137. <artifactId>xstream</artifactId>
  138. <version>${xstream.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  142. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  143. <version>${concurrentlinkedhashmap.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.rocksdb</groupId>
  147. <artifactId>rocksdbjni</artifactId>
  148. <version>${rocksdb.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.apache.pdfbox</groupId>
  152. <artifactId>pdfbox</artifactId>
  153. <version>${pdfbox.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.apache.pdfbox</groupId>
  157. <artifactId>pdfbox-tools</artifactId>
  158. <version>${pdfbox.version}</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.github.jai-imageio</groupId>
  162. <artifactId>jai-imageio-jpeg2000</artifactId>
  163. <version>${jai-imageio.version}</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.github.jai-imageio</groupId>
  167. <artifactId>jai-imageio-core</artifactId>
  168. <version>${jai-imageio.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.pdfbox</groupId>
  172. <artifactId>jbig2-imageio</artifactId>
  173. <version>${jbig2-imageio.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.aspose</groupId>
  177. <artifactId>aspose-cad</artifactId>
  178. <version>19.9</version>
  179. <scope>system</scope>
  180. <systemPath>${pom.basedir}/lib/aspose-cad-19.9.jar</systemPath>
  181. </dependency>
  182. <!-- url 规范化 -->
  183. <dependency>
  184. <groupId>io.mola.galimatias</groupId>
  185. <artifactId>galimatias</artifactId>
  186. <version>${galimatias.version}</version>
  187. </dependency>
  188. <!-- 以下是bytedeco 基于opencv ffmpeg封装的javacv,用于视频处理 -->
  189. <dependency>
  190. <groupId>org.bytedeco</groupId>
  191. <artifactId>javacv</artifactId>
  192. <version>${bytedeco.version}</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.bytedeco</groupId>
  196. <artifactId>javacpp</artifactId>
  197. <version>${bytedeco.version}</version>
  198. </dependency>
  199. <!-- 此版本中主要兼容linux和windows系统,如需兼容其他系统平台,请引入对应依赖即可 -->
  200. <dependency>
  201. <groupId>org.bytedeco</groupId>
  202. <artifactId>opencv</artifactId>
  203. <version>${opencv.version}</version>
  204. <classifier>linux-x86_64</classifier>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.bytedeco</groupId>
  208. <artifactId>opencv</artifactId>
  209. <version>${opencv.version}</version>
  210. <classifier>windows-x86_64</classifier>
  211. </dependency>
  212. <dependency>
  213. <groupId>org.bytedeco</groupId>
  214. <artifactId>openblas</artifactId>
  215. <version>${openblas.version}</version>
  216. <classifier>linux-x86_64</classifier>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.bytedeco</groupId>
  220. <artifactId>openblas</artifactId>
  221. <version>${openblas.version}</version>
  222. <classifier>windows-x86_64</classifier>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.bytedeco</groupId>
  226. <artifactId>ffmpeg</artifactId>
  227. <version>${ffmpeg.version}</version>
  228. <classifier>linux-x86_64</classifier>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.bytedeco</groupId>
  232. <artifactId>ffmpeg</artifactId>
  233. <version>${ffmpeg.version}</version>
  234. <classifier>windows-x86_64</classifier>
  235. </dependency>
  236. <dependency>
  237. <groupId>com.itextpdf</groupId>
  238. <artifactId>itextpdf</artifactId>
  239. <version>${itextpdf.version}</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>javax.media</groupId>
  243. <artifactId>jai_core</artifactId>
  244. <version>1.1.3</version>
  245. <scope>system</scope>
  246. <systemPath>${pom.basedir}/lib/jai_core-1.1.3.jar</systemPath>
  247. </dependency>
  248. <dependency>
  249. <groupId>javax.media</groupId>
  250. <artifactId>jai_codec</artifactId>
  251. <version>1.1.3</version>
  252. <scope>system</scope>
  253. <systemPath>${pom.basedir}/lib/jai_codec-1.1.3.jar</systemPath>
  254. </dependency>
  255. <!-- test dependency - start -->
  256. <dependency>
  257. <groupId>org.springframework.boot</groupId>
  258. <artifactId>spring-boot-starter-test</artifactId>
  259. <scope>test</scope>
  260. </dependency>
  261. <dependency>
  262. <groupId>commons-httpclient</groupId>
  263. <artifactId>commons-httpclient</artifactId>
  264. <version>${httpclient.version}</version>
  265. <scope>test</scope>
  266. <exclusions>
  267. <exclusion>
  268. <artifactId>commons-logging</artifactId>
  269. <groupId>commons-logging</groupId>
  270. </exclusion>
  271. </exclusions>
  272. </dependency>
  273. <!-- test dependency - end -->
  274. </dependencies>
  275. <build>
  276. <resources>
  277. <resource>
  278. <directory>src/main/resources</directory>
  279. <includes>
  280. <include>**/*</include>
  281. </includes>
  282. <filtering>false</filtering>
  283. </resource>
  284. <resource>
  285. <directory>src/main/config</directory>
  286. <filtering>true</filtering>
  287. </resource>
  288. </resources>
  289. <plugins>
  290. <plugin>
  291. <groupId>org.springframework.boot</groupId>
  292. <artifactId>spring-boot-maven-plugin</artifactId>
  293. <version>${spring.boot.version}</version>
  294. <configuration>
  295. <includeSystemScope>true</includeSystemScope>
  296. </configuration>
  297. <executions>
  298. <execution>
  299. <goals>
  300. <goal>repackage</goal>
  301. </goals>
  302. </execution>
  303. </executions>
  304. </plugin>
  305. <plugin>
  306. <groupId>org.apache.maven.plugins</groupId>
  307. <artifactId>maven-assembly-plugin</artifactId>
  308. <version>3.4.2</version>
  309. <configuration>
  310. <appendAssemblyId>false</appendAssemblyId>
  311. <descriptors>
  312. <descriptor>src/main/assembly/dist-win32.xml</descriptor>
  313. <descriptor>src/main/assembly/dist-linux.xml</descriptor>
  314. </descriptors>
  315. </configuration>
  316. <executions>
  317. <execution>
  318. <id>make-assembly</id>
  319. <phase>package</phase>
  320. <goals>
  321. <goal>single</goal>
  322. </goals>
  323. </execution>
  324. </executions>
  325. </plugin>
  326. </plugins>
  327. </build>
  328. </project>