pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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>2.2.0</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. </dependency>
  36. <dependency>
  37. <groupId>net.logstash.logback</groupId>
  38. <artifactId>logstash-logback-encoder</artifactId>
  39. <version>4.11</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.keking</groupId>
  48. <artifactId>jodconverter-core</artifactId>
  49. <version>1.0-SNAPSHOT</version>
  50. <exclusions>
  51. <exclusion>
  52. <artifactId>commons-io</artifactId>
  53. <groupId>commons-io</groupId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.commons</groupId>
  59. <artifactId>commons-lang3</artifactId>
  60. <version>3.7</version>
  61. </dependency>
  62. <!-- REDISSON -->
  63. <dependency>
  64. <groupId>org.redisson</groupId>
  65. <artifactId>redisson</artifactId>
  66. <version>3.2.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.poi</groupId>
  70. <artifactId>poi</artifactId>
  71. <version>3.12</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi-scratchpad</artifactId>
  76. <version>3.12</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>fr.opensagres.xdocreport</groupId>
  80. <artifactId>org.apache.poi.xwpf.converter.core</artifactId>
  81. <version>1.0.5</version>
  82. <exclusions>
  83. <exclusion>
  84. <artifactId>poi</artifactId>
  85. <groupId>org.apache.poi</groupId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>fr.opensagres.xdocreport</groupId>
  91. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  92. <version>1.0.5</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>fr.opensagres.xdocreport</groupId>
  96. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  97. <version>1.0.5</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>commons-io</groupId>
  101. <artifactId>commons-io</artifactId>
  102. <version>2.4</version>
  103. </dependency>
  104. <!-- 解压(apache) -->
  105. <dependency>
  106. <groupId>org.apache.commons</groupId>
  107. <artifactId>commons-compress</artifactId>
  108. <version>1.19</version>
  109. </dependency>
  110. <!-- 解压(rar)-->
  111. <dependency>
  112. <groupId>com.github.junrar</groupId>
  113. <artifactId>junrar</artifactId>
  114. <version>4.0.0</version>
  115. </dependency>
  116. <!-- 解压(7z)-->
  117. <dependency>
  118. <groupId>org.tukaani</groupId>
  119. <artifactId>xz</artifactId>
  120. <version>1.8</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>net.sourceforge.jchardet</groupId>
  124. <artifactId>jchardet</artifactId>
  125. <version>1.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>antlr</groupId>
  129. <artifactId>antlr</artifactId>
  130. <version>2.7.7</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>commons-httpclient</groupId>
  134. <artifactId>commons-httpclient</artifactId>
  135. <version>3.1</version>
  136. <scope>test</scope>
  137. <exclusions>
  138. <exclusion>
  139. <artifactId>commons-logging</artifactId>
  140. <groupId>commons-logging</groupId>
  141. </exclusion>
  142. </exclusions>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-cli</groupId>
  146. <artifactId>commons-cli</artifactId>
  147. <version>1.2</version>
  148. </dependency>
  149. <!-- FTP -->
  150. <dependency>
  151. <groupId>commons-net</groupId>
  152. <artifactId>commons-net</artifactId>
  153. <version>3.6</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.thoughtworks.xstream</groupId>
  157. <artifactId>xstream</artifactId>
  158. <version>1.4.6</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.google.guava</groupId>
  162. <artifactId>guava</artifactId>
  163. <version>19.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
  167. <artifactId>concurrentlinkedhashmap-lru</artifactId>
  168. <version>1.4.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.rocksdb</groupId>
  172. <artifactId>rocksdbjni</artifactId>
  173. <version>5.17.2</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.pdfbox</groupId>
  177. <artifactId>pdfbox</artifactId>
  178. <version>2.0.15</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.pdfbox</groupId>
  182. <artifactId>pdfbox-tools</artifactId>
  183. <version>2.0.15</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.aspose</groupId>
  187. <artifactId>aspose-cad</artifactId>
  188. <version>19.9</version>
  189. <scope>system</scope>
  190. <systemPath>${basedir}/lib/aspose-cad-19.9.jar</systemPath>
  191. </dependency>
  192. </dependencies>
  193. <build>
  194. <resources>
  195. <resource>
  196. <directory>src/main/resources</directory>
  197. <includes>
  198. <include>**/*</include>
  199. </includes>
  200. <filtering>true</filtering>
  201. </resource>
  202. <resource>
  203. <directory>src/main/config</directory>
  204. <excludes>
  205. <exclude>${build.exclude.resource}</exclude>
  206. </excludes>
  207. </resource>
  208. </resources>
  209. <plugins>
  210. <plugin>
  211. <groupId>org.springframework.boot</groupId>
  212. <artifactId>spring-boot-maven-plugin</artifactId>
  213. <configuration>
  214. <includeSystemScope>true</includeSystemScope>
  215. </configuration>
  216. </plugin>
  217. <plugin>
  218. <artifactId>maven-assembly-plugin</artifactId>
  219. <configuration>
  220. <appendAssemblyId>false</appendAssemblyId>
  221. <descriptors>
  222. <descriptor>src/main/assembly/assembly.xml</descriptor>
  223. </descriptors>
  224. </configuration>
  225. <executions>
  226. <execution>
  227. <id>make-assembly</id>
  228. <phase>package</phase>
  229. <goals>
  230. <goal>single</goal>
  231. </goals>
  232. </execution>
  233. </executions>
  234. </plugin>
  235. </plugins>
  236. </build>
  237. </project>