Skip to content

Commit

Permalink
Update dependency org.apache.maven.plugins:maven-source-plugin to v2.4
Browse files Browse the repository at this point in the history
🔖 3.2.0

🔖 3.2.0

🔖 3.2.1-snapshot

🔖 3.2.0master
  • Loading branch information
renovate[bot] authored and lbw committed Mar 2, 2024
1 parent 0a183ea commit 60d1385
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 46 deletions.
File renamed without changes.
25 changes: 25 additions & 0 deletions .github/workflows/oss-release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,28 @@ jobs:
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

publish-github-release:
needs: oss-release-deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GH_TOKEN }}

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.event.inputs.releaseversion }}
release_name: ${{ github.event.inputs.releaseversion }}
body: |
### Things that changed in this release
${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: ${{ contains(github.event.inputs.releaseversion, '-') }}
41 changes: 0 additions & 41 deletions .github/workflows/oss-snapshot-deploy.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@
EasyExcel是一个基于Java的简单、省内存的读写Excel的开源项目。在尽可能节约内存的情况下支持读写百M的Excel。
64M内存1分钟内读取75M(46W行25列)的Excel,当然还有急速模式能更快,但是内存占用会在100M多一点

![](http://pigx.vip/20200331165749_w0DXBK_Screenshot.jpeg)

## 依赖引用

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

| 版本 | 支持 |
|-------|--|
| 3.1.1 | 适配 SpringBoot3.x |
| 3.2.0 | 适配 SpringBoot3.x |
| 1.2.7 | 适配 SpringBoot2.x |

```xml
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.pig4cloud.excel</groupId>
<artifactId>excel-spring-boot-starter</artifactId>
<version>3.2.0-SNAPSHOT</version>
<version>3.2.0</version>
<name>excel-spring-boot-starter</name>
<description>easy and high performance excel</description>
<url>https://pig4cloud.com</url>
Expand Down Expand Up @@ -121,7 +121,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -205,7 +205,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down

0 comments on commit 60d1385

Please sign in to comment.