forked from github/dataease
feat: 新增导出中心功能
This commit is contained in:
parent
93d8b4bcb3
commit
623174fd43
@ -48,6 +48,10 @@
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<groupId>commons-io</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
<classifier>de</classifier>
|
||||
</dependency>
|
||||
|
8
pom.xml
8
pom.xml
@ -41,6 +41,7 @@
|
||||
<httpclient.version>4.5.14</httpclient.version>
|
||||
<httpcore.version>4.4.16</httpcore.version>
|
||||
<easyexcel.version>3.3.4</easyexcel.version>
|
||||
<commons-io.version>2.16.1</commons-io.version>
|
||||
<flatten-maven.version>1.3.0</flatten-maven.version>
|
||||
<maven.exec.version>3.1.0</maven.exec.version>
|
||||
<guava.version>33.0.0-jre</guava.version>
|
||||
@ -50,7 +51,7 @@
|
||||
<itextpdf.version>8.0.4</itextpdf.version>
|
||||
<flexmark.version>0.62.2</flexmark.version>
|
||||
<mybatis-spring.version>3.0.3</mybatis-spring.version>
|
||||
<commons-compress.version>1.19</commons-compress.version>
|
||||
<commons-compress.version>1.26.2</commons-compress.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
@ -127,6 +128,11 @@
|
||||
<artifactId>commons-compress</artifactId>
|
||||
<version>${commons-compress.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<groupId>commons-io</groupId>
|
||||
<version>${commons-io.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>easyexcel</artifactId>
|
||||
|
@ -85,6 +85,17 @@
|
||||
<groupId>org.ehcache</groupId>
|
||||
<artifactId>ehcache</artifactId>
|
||||
<classifier>jakarta</classifier>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<groupId>commons-io</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<groupId>commons-io</groupId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@ -105,8 +116,14 @@
|
||||
<dependency>
|
||||
<groupId>com.alibaba</groupId>
|
||||
<artifactId>easyexcel</artifactId>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<groupId>commons-io</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
</project>
|
||||
|
Loading…
Reference in New Issue
Block a user