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