mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.2 KiB
66 lines
2.2 KiB
<?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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<parent> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel-parent</artifactId> |
|
<version>${revision}</version> |
|
<relativePath>../pom.xml</relativePath> |
|
</parent> |
|
|
|
<packaging>jar</packaging> |
|
<artifactId>easyexcel-test</artifactId> |
|
<name>easyexcel-test</name> |
|
|
|
<properties> |
|
<maven.deploy.skip>true</maven.deploy.skip> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel-core</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<excludes> |
|
<exclude>/com/alibaba/easyexcel/test/demo/**/*.java</exclude> |
|
<exclude>/com/alibaba/easyexcel/test/temp/**/*.java</exclude> |
|
<exclude>/com/alibaba/easyexcel/test/util/**/*.java</exclude> |
|
</excludes> |
|
<testFailureIgnore>true</testFailureIgnore> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|