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.
423 lines
16 KiB
423 lines
16 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> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel-parent</artifactId> |
|
<packaging>pom</packaging> |
|
<version>${revision}</version> |
|
<name>easyexcel-parent</name> |
|
<description>easyexcel is a excel handle tools written in Java</description> |
|
<url>https://github.com/alibaba/easyexcel</url> |
|
<inceptionYear>2018</inceptionYear> |
|
|
|
<modules> |
|
<module>easyexcel-core</module> |
|
<module>easyexcel-support</module> |
|
<module>easyexcel-test</module> |
|
<module>easyexcel</module> |
|
</modules> |
|
|
|
|
|
<properties> |
|
<revision>3.3.0</revision> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<jdk.version>1.8</jdk.version> |
|
<gpg.skip>true</gpg.skip> |
|
<maven.javadoc.skip>true</maven.javadoc.skip> |
|
<maven.test.skip>true</maven.test.skip> |
|
</properties> |
|
|
|
<scm> |
|
<url>https://github.com/alibaba/easyexcel</url> |
|
<connection>scm:git:https://git@github.com/alibaba/easyexcel.git</connection> |
|
</scm> |
|
|
|
|
|
<organization> |
|
<name>Alibaba Group</name> |
|
<url>https://github.com/alibaba</url> |
|
</organization> |
|
|
|
<developers> |
|
<developer> |
|
<id>jipengfei</id> |
|
<name>jipengfei</name> |
|
<email>1558143046@qq.com</email> |
|
</developer> |
|
<developer> |
|
<id>zhuangjiaju</id> |
|
<name>Jiaju Zhuang</name> |
|
<email>zhuangjiaju@qq.com</email> |
|
</developer> |
|
</developers> |
|
|
|
<licenses> |
|
<license> |
|
<name>Apache 2</name> |
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
|
<distribution>repo</distribution> |
|
<comments>A business-friendly OSS license</comments> |
|
</license> |
|
</licenses> |
|
|
|
|
|
<distributionManagement> |
|
<snapshotRepository> |
|
<id>ossrh</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
</snapshotRepository> |
|
<repository> |
|
<id>ossrh</id> |
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
|
</repository> |
|
</distributionManagement> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel</artifactId> |
|
<version>${revision}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel-core</artifactId> |
|
<version>${revision}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>easyexcel-support</artifactId> |
|
<version>${revision}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>4.1.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>4.1.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml-schemas</artifactId> |
|
<version>4.1.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-csv</artifactId> |
|
<version>1.8</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
<version>1.7.32</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.ehcache</groupId> |
|
<artifactId>ehcache</artifactId> |
|
<version>3.9.9</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.20</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>2.11.0</version> |
|
</dependency> |
|
|
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
<version>5.3.15</version> |
|
</dependency> |
|
|
|
<!--test--> |
|
<dependency> |
|
<groupId>ch.qos.logback</groupId> |
|
<artifactId>logback-classic</artifactId> |
|
<version>1.2.5</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.alibaba.fastjson2</groupId> |
|
<artifactId>fastjson2</artifactId> |
|
<version>2.0.23</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<version>2.6.3</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.13.2</version> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
|
|
<build> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-pmd-plugin</artifactId> |
|
<version>3.8</version> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.alibaba.p3c</groupId> |
|
<artifactId>p3c-pmd</artifactId> |
|
<version>1.3.6</version> |
|
</dependency> |
|
</dependencies> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>3.2.1</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-gpg-plugin</artifactId> |
|
<version>1.6</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>3.1.0</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok-maven-plugin</artifactId> |
|
<version>1.18.20.0</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.22.2</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<version>3.2.4</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>flatten-maven-plugin</artifactId> |
|
<version>1.2.7</version> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.sonatype.plugins</groupId> |
|
<artifactId>nexus-staging-maven-plugin</artifactId> |
|
<version>1.6.13</version> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
|
|
<plugins> |
|
<!-- code style --> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-pmd-plugin</artifactId> |
|
<configuration> |
|
<printFailingErrors>true</printFailingErrors> |
|
<verbose>true</verbose> |
|
<rulesets> |
|
<ruleset>rulesets/java/ali-comment.xml</ruleset> |
|
<ruleset>rulesets/java/ali-concurrent.xml</ruleset> |
|
<ruleset>rulesets/java/ali-constant.xml</ruleset> |
|
<ruleset>rulesets/java/ali-exception.xml</ruleset> |
|
<ruleset>rulesets/java/ali-flowcontrol.xml</ruleset> |
|
<ruleset>rulesets/java/ali-naming.xml</ruleset> |
|
<ruleset>rulesets/java/ali-oop.xml</ruleset> |
|
<ruleset>rulesets/java/ali-orm.xml</ruleset> |
|
<ruleset>rulesets/java/ali-other.xml</ruleset> |
|
<ruleset>rulesets/java/ali-set.xml</ruleset> |
|
</rulesets> |
|
<excludes> |
|
<exclude>com/alibaba/excel/event/AnalysisEventListener.java</exclude> |
|
<exclude>com/alibaba/excel/metadata/DataFormatter.java</exclude> |
|
<exclude>com/alibaba/excel/util/DateUtils.java</exclude> |
|
<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> |
|
<exclude>com/alibaba/excel/write/executor/ExcelWriteFillExecutor.java</exclude> |
|
</excludes> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>pmd-check-verify</id> |
|
<phase>validate</phase> |
|
<goals> |
|
<goal>check</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>1.8</source> |
|
<target>1.8</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<configuration> |
|
<attach>true</attach> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>compile</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-gpg-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>sign</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<!-- Configuration GPG plug-ins don't tip password --> |
|
<configuration> |
|
<gpgArguments> |
|
<argument>--pinentry-mode</argument> |
|
<argument>loopback</argument> |
|
</gpgArguments> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<phase>generate-sources</phase> |
|
<goals> |
|
<goal>delombok</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-shade-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>shade</goal> |
|
</goals> |
|
<configuration> |
|
<artifactSet> |
|
<includes> |
|
<include>${project.groupId}:${project.artifactId}</include> |
|
</includes> |
|
</artifactSet> |
|
<relocations> |
|
<relocation> |
|
<pattern>org.springframework</pattern> |
|
<shadedPattern>com.alibaba.excel.support</shadedPattern> |
|
</relocation> |
|
</relocations> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>flatten-maven-plugin</artifactId> |
|
<configuration> |
|
<updatePomFile>true</updatePomFile> |
|
<flattenMode>oss</flattenMode> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>flatten.process-resources</id> |
|
<phase>process-resources</phase> |
|
<goals> |
|
<goal>flatten</goal> |
|
</goals> |
|
</execution> |
|
<execution> |
|
<id>flatten</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>flatten</goal> |
|
</goals> |
|
</execution> |
|
<execution> |
|
<id>flatten.clean</id> |
|
<phase>clean</phase> |
|
<goals> |
|
<goal>clean</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<!-- Publish package to the Maven Central Repository --> |
|
<plugin> |
|
<groupId>org.sonatype.plugins</groupId> |
|
<artifactId>nexus-staging-maven-plugin</artifactId> |
|
<extensions>true</extensions> |
|
<configuration> |
|
<serverId>ossrh</serverId> |
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl> |
|
<autoReleaseAfterClose>true</autoReleaseAfterClose> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|