You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
251 lines
8.9 KiB
251 lines
8.9 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>1.5.8.RELEASE</version> |
|
<relativePath/> <!-- lookup parent from repository --> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>cn.keking</groupId> |
|
<artifactId>kkFileView</artifactId> |
|
<version>2.2.1</version> |
|
|
|
<properties> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
|
|
<repositories> |
|
<repository> |
|
<!-- required for org.hyperic:sigar --> |
|
<id>jboss-public-repository-group</id> |
|
<url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url> |
|
</repository> |
|
</repositories> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-freemarker</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-tomcat</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-jetty</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>cn.keking</groupId> |
|
<artifactId>office-plugin</artifactId> |
|
<version>1.0-SNAPSHOT</version> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>commons-io</artifactId> |
|
<groupId>commons-io</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-lang3</artifactId> |
|
<version>3.7</version> |
|
</dependency> |
|
<!-- REDISSON --> |
|
<dependency> |
|
<groupId>org.redisson</groupId> |
|
<artifactId>redisson</artifactId> |
|
<version>3.2.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>3.12</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-scratchpad</artifactId> |
|
<version>3.12</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>fr.opensagres.xdocreport</groupId> |
|
<artifactId>org.apache.poi.xwpf.converter.core</artifactId> |
|
<version>1.0.5</version> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>poi</artifactId> |
|
<groupId>org.apache.poi</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>fr.opensagres.xdocreport</groupId> |
|
<artifactId>org.apache.poi.xwpf.converter.xhtml</artifactId> |
|
<version>1.0.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>fr.opensagres.xdocreport</groupId> |
|
<artifactId>fr.opensagres.xdocreport.document</artifactId> |
|
<version>1.0.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>2.4</version> |
|
</dependency> |
|
<!-- 解压(apache) --> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-compress</artifactId> |
|
<version>1.19</version> |
|
</dependency> |
|
<!-- 解压(rar)--> |
|
<dependency> |
|
<groupId>com.github.junrar</groupId> |
|
<artifactId>junrar</artifactId> |
|
<version>4.0.0</version> |
|
</dependency> |
|
<!-- 解压(7z)--> |
|
<dependency> |
|
<groupId>org.tukaani</groupId> |
|
<artifactId>xz</artifactId> |
|
<version>1.8</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.sourceforge.jchardet</groupId> |
|
<artifactId>jchardet</artifactId> |
|
<version>1.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>antlr</groupId> |
|
<artifactId>antlr</artifactId> |
|
<version>2.7.7</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-httpclient</groupId> |
|
<artifactId>commons-httpclient</artifactId> |
|
<version>3.1</version> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>commons-logging</artifactId> |
|
<groupId>commons-logging</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-cli</groupId> |
|
<artifactId>commons-cli</artifactId> |
|
<version>1.2</version> |
|
</dependency> |
|
<!-- FTP --> |
|
<dependency> |
|
<groupId>commons-net</groupId> |
|
<artifactId>commons-net</artifactId> |
|
<version>3.6</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.thoughtworks.xstream</groupId> |
|
<artifactId>xstream</artifactId> |
|
<version>1.4.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.googlecode.concurrentlinkedhashmap</groupId> |
|
<artifactId>concurrentlinkedhashmap-lru</artifactId> |
|
<version>1.4.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.rocksdb</groupId> |
|
<artifactId>rocksdbjni</artifactId> |
|
<version>5.17.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.pdfbox</groupId> |
|
<artifactId>pdfbox</artifactId> |
|
<version>2.0.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.pdfbox</groupId> |
|
<artifactId>pdfbox-tools</artifactId> |
|
<version>2.0.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.aspose</groupId> |
|
<artifactId>aspose-cad</artifactId> |
|
<version>19.9</version> |
|
<scope>system</scope> |
|
<systemPath>${basedir}/lib/aspose-cad-19.9.jar</systemPath> |
|
</dependency> |
|
<!-- 编码识别 --> |
|
<dependency> |
|
<groupId>cpdetector</groupId> |
|
<artifactId>cpdetector</artifactId> |
|
<version>1.04</version> |
|
<scope>system</scope> |
|
<systemPath>${basedir}/lib/cpdetector-1.04.jar</systemPath> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<includes> |
|
<include>**/*</include> |
|
</includes> |
|
<filtering>false</filtering> |
|
</resource> |
|
<resource> |
|
<directory>src/main/config</directory> |
|
<excludes> |
|
<exclude>${build.exclude.resource}</exclude> |
|
</excludes> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<configuration> |
|
<includeSystemScope>true</includeSystemScope> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<configuration> |
|
<appendAssemblyId>false</appendAssemblyId> |
|
<descriptors> |
|
<descriptor>src/main/assembly/assembly.xml</descriptor> |
|
</descriptors> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>make-assembly</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|