|
|
|
@ -1,16 +1,64 @@
|
|
|
|
|
<?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" |
|
|
|
|
<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>a2m.china</artifactId> |
|
|
|
|
<version>3</version> |
|
|
|
|
</parent> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>easyexcel</artifactId> |
|
|
|
|
<version>1.0.0-RELEASE</version> |
|
|
|
|
<version>1.0.0</version> |
|
|
|
|
<parent> |
|
|
|
|
<groupId>org.sonatype.oss</groupId> |
|
|
|
|
<artifactId>oss-parent</artifactId> |
|
|
|
|
<version>7</version> |
|
|
|
|
</parent> |
|
|
|
|
<packaging>jar</packaging> |
|
|
|
|
<name>easyexcel</name> |
|
|
|
|
<description>easyexcel is a excel handle tools written in Java</description> |
|
|
|
|
|
|
|
|
|
<url>https://github.com/alibaba/easyexcel</url> |
|
|
|
|
<inceptionYear>2018</inceptionYear> |
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
|
<junit.version>4.12</junit.version> |
|
|
|
|
<gpg.skip>true</gpg.skip> |
|
|
|
|
<javadoc.skip>false</javadoc.skip> |
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<jdk.version>1.7</jdk.version> |
|
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
<scm> |
|
|
|
|
<url>https://github.com/alibaba/easyexcel</url> |
|
|
|
|
<connection>scm:git:https://git@github.com/alibaba/easyexcel.git</connection> |
|
|
|
|
</scm> |
|
|
|
|
|
|
|
|
|
<repositories> |
|
|
|
|
<repository> |
|
|
|
|
<id>local-file</id> |
|
|
|
|
<url>file://${basedir}/lib/</url> |
|
|
|
|
<layout>default</layout> |
|
|
|
|
</repository> |
|
|
|
|
</repositories> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
</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> |
|
|
|
|
|
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
@ -40,4 +88,110 @@
|
|
|
|
|
<version>1.14</version> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
<build> |
|
|
|
|
<extensions> |
|
|
|
|
<extension> |
|
|
|
|
<groupId>org.apache.maven.wagon</groupId> |
|
|
|
|
<artifactId>wagon-webdav</artifactId> |
|
|
|
|
<version>1.0-beta-2</version> |
|
|
|
|
</extension> |
|
|
|
|
</extensions> |
|
|
|
|
<plugins> |
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
|
|
|
|
|
|
<version>3.5.1</version> |
|
|
|
|
<configuration> |
|
|
|
|
<encoding>UTF-8</encoding> |
|
|
|
|
<source>${jdk.version}</source> |
|
|
|
|
<target>${jdk.version}</target> |
|
|
|
|
</configuration> |
|
|
|
|
<dependencies> |
|
|
|
|
<dependency> |
|
|
|
|
<groupId>org.codehaus.plexus</groupId> |
|
|
|
|
<artifactId>plexus-compiler-javac</artifactId> |
|
|
|
|
<version>2.7</version> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-source-plugin</artifactId> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-sources</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar-no-fork</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
<configuration> |
|
|
|
|
<attach>true</attach> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId> |
|
|
|
|
<configuration> |
|
|
|
|
<includes> |
|
|
|
|
<include>**/bvt/**/*.java</include> |
|
|
|
|
</includes> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-javadoc</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
<configuration> |
|
|
|
|
<skip>${javadoc.skip}</skip> |
|
|
|
|
<show>public</show> |
|
|
|
|
<charset>UTF-8</charset> |
|
|
|
|
<encoding>UTF-8</encoding> |
|
|
|
|
<docencoding>UTF-8</docencoding> |
|
|
|
|
<links> |
|
|
|
|
<link>http://docs.oracle.com/javase/6/docs/api</link> |
|
|
|
|
</links> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId> |
|
|
|
|
<configuration> |
|
|
|
|
<skip>${gpg.skip}</skip> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>sign-artifacts</id> |
|
|
|
|
<phase>verify</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>sign</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
</plugin> |
|
|
|
|
</plugins> |
|
|
|
|
</build> |
|
|
|
|
<distributionManagement> |
|
|
|
|
<repository> |
|
|
|
|
<id>oss</id> |
|
|
|
|
<name>jipengfei</name> |
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
|
|
|
|
</repository> |
|
|
|
|
<snapshotRepository> |
|
|
|
|
<id>oss</id> |
|
|
|
|
<name>jipengfei</name> |
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
|
|
|
</snapshotRepository> |
|
|
|
|
|
|
|
|
|
</distributionManagement> |
|
|
|
|
</project> |