mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-04-03 15:06:11 +00:00
37 lines
1.1 KiB
XML
37 lines
1.1 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>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>ruoyi-common-excel</artifactId>
|
||
|
||
<description>
|
||
ruoyi-common-excel
|
||
</description>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.ruoyi</groupId>
|
||
<artifactId>ruoyi-common-json</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.idev.excel</groupId>
|
||
<artifactId>fastexcel</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Apache Commons Compress - 用于POI处理ZIP格式,解决Excel导出时的依赖冲突 -->
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-compress</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|