|
|
|
@ -85,7 +85,7 @@
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.slf4j</groupId> |
|
|
|
|
<artifactId>slf4j-api</artifactId> |
|
|
|
|
<version>1.7.26</version> |
|
|
|
|
<version>1.7.32</version> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.ehcache</groupId> |
|
|
|
@ -103,31 +103,31 @@
|
|
|
|
|
<dependency> |
|
|
|
|
<groupId>ch.qos.logback</groupId> |
|
|
|
|
<artifactId>logback-classic</artifactId> |
|
|
|
|
<version>1.2.3</version> |
|
|
|
|
<version>1.2.5</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>fastjson</artifactId> |
|
|
|
|
<version>1.2.71</version> |
|
|
|
|
<version>1.2.78</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
<artifactId>spring-boot</artifactId> |
|
|
|
|
<version>1.5.21.RELEASE</version> |
|
|
|
|
<version>2.5.4</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.springframework.boot</groupId> |
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId> |
|
|
|
|
<version>1.5.21.RELEASE</version> |
|
|
|
|
<version>2.5.4</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>junit</groupId> |
|
|
|
|
<artifactId>junit</artifactId> |
|
|
|
|
<version>4.13.1</version> |
|
|
|
|
<version>4.13.2</version> |
|
|
|
|
<scope>test</scope> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
@ -171,6 +171,7 @@
|
|
|
|
|
<exclude>com/alibaba/excel/util/MapUtils.java</exclude> |
|
|
|
|
<exclude>com/alibaba/excel/metadata/format/DataFormatter.java</exclude> |
|
|
|
|
<exclude>com/alibaba/excel/metadata/format/ExcelGeneralNumberFormat.java</exclude> |
|
|
|
|
<exclude>com/alibaba/excel/metadata/csv/CsvDataFormat.java</exclude> |
|
|
|
|
</excludes> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
@ -193,14 +194,16 @@
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
<version>3.8.1</version> |
|
|
|
|
<configuration> |
|
|
|
|
<source>1.8</source> |
|
|
|
|
<target>1.8</target> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
|
<version>2.1</version> |
|
|
|
|
<version>3.2.1</version> |
|
|
|
|
<configuration> |
|
|
|
|
<attach>true</attach> |
|
|
|
|
</configuration> |
|
|
|
@ -252,6 +255,17 @@
|
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId> |
|
|
|
|
<version>2.22.2</version> |
|
|
|
|
<configuration> |
|
|
|
|
<includes> |
|
|
|
|
<include>com/alibaba/easyexcel/test/core/**/*.java</include> |
|
|
|
|
</includes> |
|
|
|
|
<testFailureIgnore>true</testFailureIgnore> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
</project> |
|
|
|
|