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.

147 lines
4.7 KiB

6 years ago
<?xml version="1.0" encoding="UTF-8"?>
6 years ago
<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">
6 years ago
<modelVersion>4.0.0</modelVersion>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>1.1.2-beta5</version>
6 years ago
<packaging>jar</packaging>
<name>easyexcel</name>
6 years ago
<description>easyexcel is a excel handle tools written in Java</description>
<url>https://github.com/alibaba/easyexcel</url>
<inceptionYear>2018</inceptionYear>
6 years ago
6 years ago
<properties>
6 years ago
<!--<gpg.skip>true</gpg.skip>-->
6 years ago
<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>
6 years ago
<!--<repositories>-->
<!--<repository>-->
<!--<id>local-file</id>-->
<!--<url>file://${basedir}/lib/</url>-->
<!--<layout>default</layout>-->
<!--</repository>-->
<!--</repositories>-->
6 years ago
<organization>
<name>Alibaba Group</name>
<url>https://github.com/alibaba</url>
</organization>
6 years ago
6 years ago
<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>
6 years ago
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
6 years ago
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
6 years ago
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.1</version>
6 years ago
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
6 years ago
</dependencies>
6 years ago
<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>
6 years ago
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
6 years ago
<source>1.6</source>
<target>1.6</target>
6 years ago
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
6 years ago
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
6 years ago
<executions>
<execution>
6 years ago
<phase>compile</phase>
6 years ago
<goals>
6 years ago
<goal>jar</goal>
6 years ago
</goals>
</execution>
</executions>
</plugin>
6 years ago
<plugin>
<groupId>org.apache.maven.plugins</groupId>
6 years ago
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
6 years ago
<executions>
<execution>
6 years ago
<phase>verify</phase>
6 years ago
<goals>
6 years ago
<goal>sign</goal>
6 years ago
</goals>
</execution>
</executions>
</plugin>
<plugin>
6 years ago
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
6 years ago
<executions>
<execution>
6 years ago
<id>attach-javadocs</id>
6 years ago
<goals>
6 years ago
<goal>jar</goal>
6 years ago
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
6 years ago
</project>