@@ -4,4 +4,5 @@ | |||||
*.jar | *.jar | ||||
*.war | *.war | ||||
*.ear | *.ear | ||||
target/ | |||||
target/ | |||||
deploy.bat |
@@ -50,19 +50,19 @@ SNAPSHOT 版本 | |||||
https://oss.sonatype.org/content/repositories/snapshots/ | https://oss.sonatype.org/content/repositories/snapshots/ | ||||
```xml | ```xml | ||||
<dependency> | <dependency> | ||||
<groupId>org.jeecgframework</groupId> | |||||
<groupId>org.jeecg</groupId> | |||||
<artifactId>easypoi-base</artifactId> | <artifactId>easypoi-base</artifactId> | ||||
<version>2.1.1</version> | |||||
<version>2.2.0</version> | |||||
</dependency> | </dependency> | ||||
<dependency> | <dependency> | ||||
<groupId>org.jeecgframework</groupId> | |||||
<groupId>org.jeecg</groupId> | |||||
<artifactId>easypoi-web</artifactId> | <artifactId>easypoi-web</artifactId> | ||||
<version>2.1.1</version> | |||||
<version>2.2.0</version> | |||||
</dependency> | </dependency> | ||||
<dependency> | <dependency> | ||||
<groupId>org.jeecgframework</groupId> | |||||
<groupId>org.jeecg</groupId> | |||||
<artifactId>easypoi-annotation</artifactId> | <artifactId>easypoi-annotation</artifactId> | ||||
<version>2.1.1</version> | |||||
<version>2.2.0</version> | |||||
</dependency> | </dependency> | ||||
``` | ``` | ||||
@@ -70,11 +70,12 @@ https://oss.sonatype.org/content/repositories/snapshots/ | |||||
版本修改 | 版本修改 | ||||
-------------------------- | -------------------------- | ||||
- 2.2.0-SNAPSHOT | |||||
- !!!没有功能更新,但是groupId 改成org.jeecg,为了以后可以直接提交到中央库了 | |||||
- 2.2.0 | |||||
- groupId 改成org.jeecg,为了以后可以直接提交到中央库了 | |||||
- 把test 那个模块删除了 | - 把test 那个模块删除了 | ||||
- 提供了Excel 预览的功能 | |||||
- type 新增一个 4类型,用于Excel是数字,但是java 是String,防止科学计数法 | |||||
- 修复一些bug | |||||
- 2.1.1-release -小更新/防止下一个预览功能太久不能发布更新 | - 2.1.1-release -小更新/防止下一个预览功能太久不能发布更新 | ||||
- $fe标签 | - $fe标签 | ||||
- 几个可能影响使用的bug | - 几个可能影响使用的bug | ||||
@@ -4,7 +4,7 @@ | |||||
<parent> | <parent> | ||||
<groupId>org.jeecg</groupId> | <groupId>org.jeecg</groupId> | ||||
<artifactId>easypoi</artifactId> | <artifactId>easypoi</artifactId> | ||||
<version>2.2.0-SNAPSHOT</version> | |||||
<version>2.1.2</version> | |||||
</parent> | </parent> | ||||
<artifactId>easypoi-annotation</artifactId> | <artifactId>easypoi-annotation</artifactId> | ||||
<description>基础注解类,解耦合</description> | <description>基础注解类,解耦合</description> |
@@ -4,7 +4,7 @@ | |||||
<parent> | <parent> | ||||
<groupId>org.jeecg</groupId> | <groupId>org.jeecg</groupId> | ||||
<artifactId>easypoi</artifactId> | <artifactId>easypoi</artifactId> | ||||
<version>2.2.0-SNAPSHOT</version> | |||||
<version>2.1.2</version> | |||||
</parent> | </parent> | ||||
<artifactId>easypoi-base</artifactId> | <artifactId>easypoi-base</artifactId> | ||||
<dependencies> | <dependencies> | ||||
@@ -4,7 +4,7 @@ | |||||
<parent> | <parent> | ||||
<groupId>org.jeecg</groupId> | <groupId>org.jeecg</groupId> | ||||
<artifactId>easypoi</artifactId> | <artifactId>easypoi</artifactId> | ||||
<version>2.2.0-SNAPSHOT</version> | |||||
<version>2.1.2</version> | |||||
</parent> | </parent> | ||||
<artifactId>easypoi-web</artifactId> | <artifactId>easypoi-web</artifactId> | ||||
<dependencies> | <dependencies> | ||||
@@ -1 +0,0 @@ | |||||
cmd /k mvn package -DskipTest |
@@ -3,7 +3,7 @@ | |||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>org.jeecg</groupId> | <groupId>org.jeecg</groupId> | ||||
<artifactId>easypoi</artifactId> | <artifactId>easypoi</artifactId> | ||||
<version>2.2.0-SNAPSHOT</version> | |||||
<version>2.1.2</version> | |||||
<packaging>pom</packaging> | <packaging>pom</packaging> | ||||
<name>easypoi</name> | <name>easypoi</name> | ||||
<modules> | <modules> | ||||
@@ -37,7 +37,7 @@ | |||||
</developers> | </developers> | ||||
<properties> | <properties> | ||||
<sub.version>2.2.0-SNAPSHOT</sub.version> | |||||
<sub.version>2.1.2</sub.version> | |||||
<poi.version>3.9</poi.version> | <poi.version>3.9</poi.version> | ||||
<xerces.version>2.9.1</xerces.version> | <xerces.version>2.9.1</xerces.version> | ||||
<guava.version>16.0.1</guava.version> | <guava.version>16.0.1</guava.version> | ||||