pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yudianbank</groupId>
  6. <artifactId>filepreview</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>file-online-preview</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.8.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <ufile.sdk.verison>1.0-SNAPSHOT</ufile.sdk.verison>
  22. <logging.path>${basedir}/target/classes/logs</logging.path>
  23. <appName>file-preview</appName>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-freemarker</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <!--apollo client-->
  35. <dependency>
  36. <groupId>com.ctrip.framework.apollo</groupId>
  37. <artifactId>apollo-client</artifactId>
  38. <version>0.8.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>net.logstash.logback</groupId>
  42. <artifactId>logstash-logback-encoder</artifactId>
  43. <version>4.11</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <!-- REDISSON -->
  51. <dependency>
  52. <groupId>org.redisson</groupId>
  53. <artifactId>redisson</artifactId>
  54. <version>3.2.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId> org.apache.poi</groupId>
  58. <artifactId> poi </artifactId>
  59. <version>3.12</version>
  60. </dependency>
  61. <dependency >
  62. <groupId> org.apache.poi</groupId>
  63. <artifactId>poi-scratchpad</artifactId>
  64. <version > 3.12 </version>
  65. </dependency>
  66. <dependency>
  67. <groupId>fr.opensagres.xdocreport</groupId>
  68. <artifactId>org.apache.poi.xwpf.converter.core</artifactId>
  69. <version>1.0.5</version>
  70. <exclusions>
  71. <exclusion>
  72. <artifactId>poi</artifactId>
  73. <groupId>org.apache.poi</groupId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>fr.opensagres.xdocreport</groupId>
  79. <artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId>
  80. <version>1.0.5</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>fr.opensagres.xdocreport</groupId>
  84. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  85. <version>1.0.5</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-io</groupId>
  89. <artifactId>commons-io</artifactId>
  90. <version>2.4</version>
  91. </dependency>
  92. <!-- 解压(apache) -->
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-compress</artifactId>
  96. <version>1.9</version>
  97. </dependency>
  98. <!-- 解压(rar)-->
  99. <dependency>
  100. <groupId>com.github.junrar</groupId>
  101. <artifactId>junrar</artifactId>
  102. <version>0.7</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>net.sourceforge.jchardet</groupId>
  106. <artifactId>jchardet</artifactId>
  107. <version>1.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>antlr</groupId>
  111. <artifactId>antlr</artifactId>
  112. <version>2.7.7</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-httpclient</groupId>
  116. <artifactId>commons-httpclient</artifactId>
  117. <version>3.1</version>
  118. <scope>test</scope>
  119. <exclusions>
  120. <exclusion>
  121. <artifactId>commons-logging</artifactId>
  122. <groupId>commons-logging</groupId>
  123. </exclusion>
  124. </exclusions>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.artofsolving.jodconverter</groupId>
  128. <artifactId>jodconverter-core</artifactId>
  129. <version>3.0-SNAPSHOT</version>
  130. <exclusions>
  131. <exclusion>
  132. <artifactId>commons-io</artifactId>
  133. <groupId>commons-io</groupId>
  134. </exclusion>
  135. </exclusions>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-cli</groupId>
  139. <artifactId>commons-cli</artifactId>
  140. <version>1.2</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.thoughtworks.xstream</groupId>
  144. <artifactId>xstream</artifactId>
  145. <version>1.3.1</version>
  146. </dependency>
  147. </dependencies>
  148. <build>
  149. <resources>
  150. <resource>
  151. <directory>${basedir}/src/main/resources</directory>
  152. <includes>
  153. <include>**/*</include>
  154. </includes>
  155. <filtering>true</filtering>
  156. </resource>
  157. </resources>
  158. <plugins>
  159. <plugin>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-maven-plugin</artifactId>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. </project>