forked from github/dataease
Merge pull request #9874 from dataease/pr@dev@fixExportdata
fix: 导出文件失败
This commit is contained in:
commit
68eb8961fb
@ -270,6 +270,10 @@
|
||||
<artifactId>commons-io</artifactId>
|
||||
<groupId>commons-io</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<groupId>org.apache.xmlbeans</groupId>
|
||||
<artifactId>xmlbeans</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
@ -347,6 +351,10 @@
|
||||
<artifactId>commons-math4-legacy</artifactId>
|
||||
<version>4.0-beta1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlbeans</groupId>
|
||||
<artifactId>xmlbeans</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
12
pom.xml
12
pom.xml
@ -11,6 +11,7 @@
|
||||
<properties>
|
||||
<dataease.version>1.18.19</dataease.version>
|
||||
<poi.version>4.1.1</poi.version>
|
||||
<xmlbeans.version>3.1.0</xmlbeans.version>
|
||||
</properties>
|
||||
|
||||
<name>dataease</name>
|
||||
@ -63,6 +64,17 @@
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.xmlbeans</groupId>
|
||||
<artifactId>xmlbeans</artifactId>
|
||||
<version>${xmlbeans.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>*</groupId>
|
||||
<artifactId>*</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user