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.
161 lines
5.5 KiB
161 lines
5.5 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</artifactId> |
|
<version>1.0.1</version> |
|
<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> |
|
<!--<gpg.skip>true</gpg.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> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi</artifactId> |
|
<version>3.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.poi</groupId> |
|
<artifactId>poi-ooxml</artifactId> |
|
<version>3.15</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>commons-beanutils</groupId> |
|
<artifactId>commons-beanutils</artifactId> |
|
<version>1.9.2</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>4.12</version> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.commons</groupId> |
|
<artifactId>commons-compress</artifactId> |
|
<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> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<source>1.6</source> |
|
<target>1.6</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-source-plugin</artifactId> |
|
<version>2.1</version> |
|
<configuration> |
|
<attach>true</attach> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<phase>compile</phase> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</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-gpg-plugin</artifactId> |
|
<version>1.6</version> |
|
<executions> |
|
<execution> |
|
<phase>verify</phase> |
|
<goals> |
|
<goal>sign</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-javadoc-plugin</artifactId> |
|
<version>2.9.1</version> |
|
<executions> |
|
<execution> |
|
<id>attach-javadocs</id> |
|
<goals> |
|
<goal>jar</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |