Skip to content

Commit

Permalink
📝 Writing docs. 增加快照版本说明
Browse files Browse the repository at this point in the history
  • Loading branch information
lltx committed Sep 23, 2022
1 parent 178d362 commit a798d8d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ EasyExcel是一个基于Java的简单、省内存的读写Excel的开源项目
## 依赖引用

- 项目已上传至 maven 仓库,直接引入即可使用

```xml
<dependency>
<groupId>com.pig4cloud.excel</groupId>
Expand All @@ -20,6 +21,26 @@ EasyExcel是一个基于Java的简单、省内存的读写Excel的开源项目
</dependency>
```

- 使用快照版本

```shell
<dependency>
<groupId>com.pig4cloud.excel</groupId>
<artifactId>excel-spring-boot-starter</artifactId>
<version>1.2.7-SNAPSHOT</version>
</dependency>

<repositories>
<repository>
<id>snapshots</id>
<name>Excel Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
```


## 导入 Excel
Expand Down

0 comments on commit a798d8d

Please sign in to comment.