Skip to content

Commit

Permalink
升级正式版本
Browse files Browse the repository at this point in the history
  • Loading branch information
xueli.xue committed Oct 24, 2018
1 parent ec58a18 commit fe2bf29
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 22 deletions.
2 changes: 1 addition & 1 deletion doc/XXL-EXCEL官方文档.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ name | 属性/列名称
- 5、多Sheet导出:导出Excel时支持设置多张sheet;
- 6、多Sheet导入:导入Excel时支持设置多张sheet,通过 "@ExcelSheet.name" 注解匹配Sheet;

### 版本 V1.1.1,新特性[迭代中]
### 版本 V1.1.1,新特性[2018-10-24]
- 1、支持设置Field水平位置,如居中、居左;
- 2、底层API优化,预约多Sheet操作支持;
- 3、空Cell导入抛错问题修复;
Expand Down
32 changes: 11 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-excel</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.1</version>

<name>${project.artifactId}</name>
<description>A flexible tool for translating Java objects and Excel documents.</description>
<url>http://www.xuxueli.com/</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>

<maven.test.skip>true</maven.test.skip>

<slf4j-api.version>1.7.25</slf4j-api.version>
<poi.version>3.17</poi.version>
</properties>
Expand Down Expand Up @@ -41,24 +49,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

Expand Down Expand Up @@ -94,7 +84,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -108,7 +98,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down

0 comments on commit fe2bf29

Please sign in to comment.