pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>1.5.8.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>cn.keking</groupId>
  13. <artifactId>kkFileView</artifactId>
  14. <version>3.3.1</version>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <!-- required for org.hyperic:sigar -->
  23. <id>jboss-public-repository-group</id>
  24. <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
  25. </repository>
  26. </repositories>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-freemarker</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-tomcat</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-jetty</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.keking</groupId>
  53. <artifactId>office-plugin</artifactId>
  54. <version>1.0-SNAPSHOT</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.commons</groupId>
  58. <artifactId>commons-lang3</artifactId>
  59. <version>3.7</version>
  60. </dependency>
  61. <!-- REDISSON -->
  62. <dependency>
  63. <groupId>org.redisson</groupId>
  64. <artifactId>redisson</artifactId>
  65. <version>3.2.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.poi</groupId>
  69. <artifactId>poi</artifactId>
  70. <version>3.17</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.poi</groupId>
  74. <artifactId>poi-scratchpad</artifactId>
  75. <version>3.12</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>fr.opensagres.xdocreport</groupId>
  79. <artifactId>org.apache.poi.xwpf.converter.core</artifactId>
  80. <version>1.0.5</version>
  81. <exclusions>
  82. <exclusion>
  83. <artifactId>poi</artifactId>
  84. <groupId>org.apache.poi</groupId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>fr.opensagres.xdocreport</groupId>
  90. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  91. <version>1.0.5</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>fr.opensagres.xdocreport</groupId>
  95. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  96. <version>1.0.5</version>
  97. </dependency>
  98. <!-- 解压(apache) -->
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-compress</artifactId>
  102. <version>1.19</version>
  103. </dependency>
  104. <!-- 解压(rar)-->
  105. <dependency>
  106. <groupId>com.github.junrar</groupId>
  107. <artifactId>junrar</artifactId>
  108. <version>4.0.0</version>
  109. </dependency>
  110. <!-- 解压(7z)-->
  111. <dependency>
  112. <groupId>org.tukaani</groupId>
  113. <artifactId>xz</artifactId>
  114. <version>1.8</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>net.sourceforge.jchardet</groupId>
  118. <artifactId>jchardet</artifactId>
  119. <version>1.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>antlr</groupId>
  123. <artifactId>antlr</artifactId>
  124. <version>2.7.7</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-httpclient</groupId>
  128. <artifactId>commons-httpclient</artifactId>
  129. <version>3.1</version>
  130. <scope>test</scope>
  131. <exclusions>
  132. <exclusion>
  133. <artifactId>commons-logging</artifactId>
  134. <groupId>commons-logging</groupId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-cli</groupId>
  140. <artifactId>commons-cli</artifactId>
  141. <version>1.2</version>
  142. </dependency>
  143. <!-- FTP -->
  144. <dependency>
  145. <groupId>commons-net</groupId>
  146. <artifactId>commons-net</artifactId>
  147. <version>3.6</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.thoughtworks.xstream</groupId>
  151. <artifactId>xstream</artifactId>
  152. <version>1.4.15</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  156. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  157. <version>1.4.2</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.rocksdb</groupId>
  161. <artifactId>rocksdbjni</artifactId>
  162. <version>5.17.2</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.pdfbox</groupId>
  166. <artifactId>pdfbox</artifactId>
  167. <version>2.0.15</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.pdfbox</groupId>
  171. <artifactId>pdfbox-tools</artifactId>
  172. <version>2.0.15</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.aspose</groupId>
  176. <artifactId>aspose-cad</artifactId>
  177. <version>19.9</version>
  178. <scope>system</scope>
  179. <systemPath>${basedir}/lib/aspose-cad-19.9.jar</systemPath>
  180. </dependency>
  181. <!-- 编码识别 -->
  182. <dependency>
  183. <groupId>cpdetector</groupId>
  184. <artifactId>cpdetector</artifactId>
  185. <version>1.04</version>
  186. <scope>system</scope>
  187. <systemPath>${basedir}/lib/cpdetector-1.04.jar</systemPath>
  188. </dependency>
  189. <!-- url 规范化 -->
  190. <dependency>
  191. <groupId>io.mola.galimatias</groupId>
  192. <artifactId>galimatias</artifactId>
  193. <version>0.2.1</version>
  194. </dependency>
  195. </dependencies>
  196. <build>
  197. <resources>
  198. <resource>
  199. <directory>src/main/resources</directory>
  200. <includes>
  201. <include>**/*</include>
  202. </includes>
  203. <filtering>false</filtering>
  204. </resource>
  205. <resource>
  206. <directory>src/main/config</directory>
  207. <excludes>
  208. <exclude>${build.exclude.resource}</exclude>
  209. </excludes>
  210. <filtering>true</filtering>
  211. </resource>
  212. </resources>
  213. <plugins>
  214. <plugin>
  215. <groupId>org.springframework.boot</groupId>
  216. <artifactId>spring-boot-maven-plugin</artifactId>
  217. <configuration>
  218. <includeSystemScope>true</includeSystemScope>
  219. </configuration>
  220. </plugin>
  221. <plugin>
  222. <artifactId>maven-assembly-plugin</artifactId>
  223. <configuration>
  224. <appendAssemblyId>false</appendAssemblyId>
  225. <descriptors>
  226. <descriptor>src/main/assembly/assembly.xml</descriptor>
  227. </descriptors>
  228. </configuration>
  229. <executions>
  230. <execution>
  231. <id>make-assembly</id>
  232. <phase>package</phase>
  233. <goals>
  234. <goal>single</goal>
  235. </goals>
  236. </execution>
  237. </executions>
  238. </plugin>
  239. </plugins>
  240. </build>
  241. </project>