|
|
|
@ -4,12 +4,7 @@
|
|
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
|
<groupId>com.alibaba</groupId> |
|
|
|
|
<artifactId>easyexcel</artifactId> |
|
|
|
|
<version>1.0.0</version> |
|
|
|
|
<parent> |
|
|
|
|
<groupId>org.sonatype.oss</groupId> |
|
|
|
|
<artifactId>oss-parent</artifactId> |
|
|
|
|
<version>7</version> |
|
|
|
|
</parent> |
|
|
|
|
<version>1.0.0-RELEASE</version> |
|
|
|
|
<packaging>jar</packaging> |
|
|
|
|
<name>easyexcel</name> |
|
|
|
|
<description>easyexcel is a excel handle tools written in Java</description> |
|
|
|
@ -18,9 +13,7 @@
|
|
|
|
|
<inceptionYear>2018</inceptionYear> |
|
|
|
|
|
|
|
|
|
<properties> |
|
|
|
|
<junit.version>4.12</junit.version> |
|
|
|
|
<gpg.skip>true</gpg.skip> |
|
|
|
|
<javadoc.skip>false</javadoc.skip> |
|
|
|
|
<!--<gpg.skip>true</gpg.skip>--> |
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
|
<jdk.version>1.7</jdk.version> |
|
|
|
|
</properties> |
|
|
|
@ -30,19 +23,19 @@
|
|
|
|
|
<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> |
|
|
|
|
<!--<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> |
|
|
|
@ -88,110 +81,80 @@
|
|
|
|
|
<version>1.14</version> |
|
|
|
|
</dependency> |
|
|
|
|
</dependencies> |
|
|
|
|
<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> |
|
|
|
|
|
|
|
|
|
<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> |
|
|
|
|
<source>1.6</source> |
|
|
|
|
<target>1.6</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> |
|
|
|
|
<version>2.1</version> |
|
|
|
|
<configuration> |
|
|
|
|
<attach>true</attach> |
|
|
|
|
</configuration> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-sources</id> |
|
|
|
|
<phase>compile</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar-no-fork</goal> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
</goals> |
|
|
|
|
</execution> |
|
|
|
|
</executions> |
|
|
|
|
<configuration> |
|
|
|
|
<attach>true</attach> |
|
|
|
|
</configuration> |
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
|
|
<!--<plugin>--> |
|
|
|
|
<!--<groupId>org.sonatype.plugins</groupId>--> |
|
|
|
|
<!--<artifactId>nexus-staging-maven-plugin</artifactId>--> |
|
|
|
|
<!--<version>1.6.7</version>--> |
|
|
|
|
<!--<extensions>true</extensions>--> |
|
|
|
|
<!--<configuration>--> |
|
|
|
|
<!--<serverId>ossrh</serverId>--> |
|
|
|
|
<!--<nexusUrl>https://oss.sonatype.org/</nexusUrl>--> |
|
|
|
|
<!--<autoReleaseAfterClose>true</autoReleaseAfterClose>--> |
|
|
|
|
<!--</configuration>--> |
|
|
|
|
<!--</plugin>--> |
|
|
|
|
<!-- GPG --> |
|
|
|
|
<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> |
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId> |
|
|
|
|
<version>1.6</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>attach-javadoc</id> |
|
|
|
|
<phase>verify</phase> |
|
|
|
|
<goals> |
|
|
|
|
<goal>jar</goal> |
|
|
|
|
<goal>sign</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> |
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
|
|
|
<version>2.9.1</version> |
|
|
|
|
<executions> |
|
|
|
|
<execution> |
|
|
|
|
<id>sign-artifacts</id> |
|
|
|
|
<phase>verify</phase> |
|
|
|
|
<id>attach-javadocs</id> |
|
|
|
|
<goals> |
|
|
|
|
<goal>sign</goal> |
|
|
|
|
<goal>jar</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> |