90 lines
2.8 KiB
XML
90 lines
2.8 KiB
XML
<?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>
|
||
<artifactId>ruoyi</artifactId>
|
||
<groupId>com.ruoyi</groupId>
|
||
<version>3.9.1</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<packaging>jar</packaging>
|
||
<artifactId>ruoyi-kkfileview</artifactId>
|
||
|
||
<description>
|
||
kkFileView 文件预览模块
|
||
</description>
|
||
|
||
<dependencies>
|
||
<!-- SpringBoot Web容器 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 通用工具-->
|
||
<dependency>
|
||
<groupId>com.ruoyi</groupId>
|
||
<artifactId>ruoyi-common</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Apache POI for Office files -->
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Apache Commons IO -->
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
</dependency>
|
||
|
||
<!-- OpenOffice/LibreOffice integration (for document conversion) -->
|
||
<!-- 注意:kkFileView 使用 OpenOffice 或 LibreOffice 进行文档转换 -->
|
||
<!-- 如果需要完整的Office文件转换功能,请取消注释以下依赖并安装LibreOffice -->
|
||
<!--
|
||
<dependency>
|
||
<groupId>org.jodconverter</groupId>
|
||
<artifactId>jodconverter-core</artifactId>
|
||
<version>4.4.6</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.jodconverter</groupId>
|
||
<artifactId>jodconverter-local</artifactId>
|
||
<version>4.4.6</version>
|
||
</dependency>
|
||
-->
|
||
|
||
<!-- PDF处理 -->
|
||
<dependency>
|
||
<groupId>org.apache.pdfbox</groupId>
|
||
<artifactId>pdfbox</artifactId>
|
||
<version>2.0.24</version>
|
||
</dependency>
|
||
|
||
<!-- 图片处理 -->
|
||
<dependency>
|
||
<groupId>net.coobird</groupId>
|
||
<artifactId>thumbnailator</artifactId>
|
||
<version>0.4.17</version>
|
||
</dependency>
|
||
|
||
<!-- 文件类型检测 -->
|
||
<dependency>
|
||
<groupId>org.apache.tika</groupId>
|
||
<artifactId>tika-core</artifactId>
|
||
<version>2.7.0</version>
|
||
</dependency>
|
||
|
||
<!-- Base64编码 -->
|
||
<dependency>
|
||
<groupId>commons-codec</groupId>
|
||
<artifactId>commons-codec</artifactId>
|
||
<version>1.15</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
</project>
|