Skip to content

Commit 41a46d9

Browse files
committed
fix-release-1.0.3-failed
1 parent acfb590 commit 41a46d9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# ExcelReads(简单Excel通用读写器)
22

33
![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven.svg?label=License)
4-
![Jenkins Status](https://img.shields.io/jenkins/s/https/builds.apache.org/job/maven-box/job/maven/job/master.svg?style=flat-square)
4+
![Jenkins Status](https://img.shields.io/badge/build-passing-green)
5+
![last_release](https://img.shields.io/badge/release-1.0.4-green)
56
![language](https://img.shields.io/badge/language-java-orange.svg)
6-
![last_release](https://img.shields.io/badge/release-1.0.3-green)
77
## ExcelReads是什么?
88
* 这是一个通用的简单的Excel读取器
99
* 支持自定义JavaBean实体读取和HashMap自动读取
@@ -19,15 +19,15 @@
1919
<dependency>
2020
<groupId>com.github.matrixseven</groupId>
2121
<artifactId>ExcelReads</artifactId>
22-
<version>1.0.3</version>
22+
<version>1.0.4</version>
2323
</dependency>
2424

2525

2626

2727
```
2828

2929
## [更新日志详见:UpdateLogs.md](UPDATELOG.MD)
30-
###最近三次更新:
30+
### 最近三次更新:
3131

3232

3333
#### 更新2019/12/2 
@@ -83,7 +83,6 @@
8383
//Create Obj
8484
List<B> create = ExcelFactory.<B>getBeans(B.class, filePath, it -> it.title(2)
8585
.content(3)).Create();
86-
System.out.println(create);
8786
//CreateObjLoop
8887
String filePath2 = System.getProperty("user.dir").concat("/seven.xlsx");
8988
Map<String, List<A>> stringListMap = ExcelFactory.<A>getBeans(A.class, filePath2,
@@ -126,6 +125,7 @@ ExcelFactory.saveExcel(ps.executeQuery()).SetPath("seven.xlsx")
126125
## 写入效果
127126
![ExcelReads](write.png)
128127

128+
##
129129
* 邮件(hacker.kill07@gmail.com)
130130
* QQ: 985390927
131131
* weibo: [@Alden_情绪控](http://weibo.com/Sweets07)

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.matrixseven</groupId>
55
<artifactId>ExcelReads</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.3</version>
7+
<version>1.0.4</version>
88
<name>ExcelReads</name>
99
<description>A ExcelReads Utils By Seven</description>
1010
<url>https://github.com/MatrixSeven/ExcelReads</url>
@@ -118,4 +118,4 @@
118118
</plugin>
119119
</plugins>
120120
</build>
121-
</project>
121+
</project>

0 commit comments

Comments
 (0)