Skip to content

Commit 0a9720a

Browse files
authored
chore: upgrade maven wrapper and need not check in the jar (#247)
* chore: upgrade maven wrapper and need not check in the jar Signed-off-by: tison <[email protected]> * other meta infos Signed-off-by: tison <[email protected]> --------- Signed-off-by: tison <[email protected]>
1 parent e90e6b5 commit 0a9720a

File tree

16 files changed

+351
-351
lines changed

16 files changed

+351
-351
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ antx.properties
1515
output/
1616
.flattened-pom.xml
1717
dependency-reduced-pom.xml
18+
19+
/.mvn/wrapper/maven-wrapper.jar

.mvn/wrapper/maven-wrapper.jar

-57.4 KB
Binary file not shown.

.mvn/wrapper/maven-wrapper.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
# to you under the Apache License, Version 2.0 (the
66
# "License"); you may not use this file except in compliance
77
# with the License. You may obtain a copy of the License at
8-
#
8+
#
99
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
10+
#
1111
# Unless required by applicable law or agreed to in writing,
1212
# software distributed under the License is distributed on an
1313
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
18-
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
18+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar

update.md renamed to CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
# 1.1.0
2-
此次升级主要修复 [EasyExcel](https://github.com/alibaba/easyexcel) 历史 BUG,同时剔除了部分依赖库,符合 `MIT` 协议的相关规范。
1+
# CHANGELOG
2+
3+
## 1.1.0
4+
5+
此次升级主要修复 [EasyExcel](https://github.com/alibaba/easyexcel) 历史 BUG,同时剔除了部分依赖库,符合 MIT 协议的相关规范。
36

47
具体更新内容如下:
58
- 【改进】移除 `itext` 依赖库,将 `转换PDF` 功能迁移至新项目;

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 CodePhiliaX
3+
Copyright (c) 2024 jipengfei
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ FastExcel 将始终坚持免费开源,并采用最开放的 MIT 协议,使
3838
> 当前 FastExcel 底层使用 poi 作为基础包,如果您的项目中已经有 poi 相关组件,需要您手动排除 poi 的相关 jar 包。
3939
4040
## 更新
41-
您可以在 [版本升级详情](update.md) 中查询到具体的版本更新细节。 您也可以在[Maven 中心仓库](https://mvnrepository.com/artifact/cn.idev.excel/fastexcel)中查询到所有的版本。
41+
您可以在 [版本升级详情](CHANGELOG.md) 中查询到具体的版本更新细节。 您也可以在[Maven 中心仓库](https://mvnrepository.com/artifact/cn.idev.excel/fastexcel)中查询到所有的版本。
4242
### Maven
4343
如果您使用 Maven 进行项目构建,请在 `pom.xml` 文件中引入以下配置:
4444
```xml
@@ -85,11 +85,11 @@ dependencies {
8585
将 EasyExcel 的包名替换为 FastExcel 的包名,如下:
8686
```java
8787
// 将 easyexcel 的包名替换为 FastExcel 的包名
88-
import com.alibaba.excel.**;
88+
import com.alibaba.excel.*;
8989
```
9090
替换为
9191
```java
92-
import cn.idev.excel.**;
92+
import cn.idev.excel.*;
9393
```
9494
### 3. 不修改代码直接依赖 FastExcel
9595
如果由于种种原因您不想修改代码,可以直接依赖 FastExcel ,然后在 `pom.xml` 文件中直接依赖 FastExcel。

README_EN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
}
5050
```
5151
## Update
52-
For detailed update logs, refer to [Details of version updates](update.md). You can also find all available versions in the [Maven Central Repository](https://mvnrepository.com/artifact/cn.idev.excel/fastexcel).
52+
For detailed update logs, refer to [Details of version updates](CHANGELOG.md). You can also find all available versions in the [Maven Central Repository](https://mvnrepository.com/artifact/cn.idev.excel/fastexcel).
5353

5454
## Differences Between EasyExcel and FastExcel
5555
- FastExcel supports all the features of EasyExcel but with better performance and stability.
@@ -80,13 +80,13 @@ Replace with:
8080
Replace the EasyExcel package name with the FastExcel package name, as follows:
8181
```java
8282
// Replace EasyExcel package name with FastExcel package name
83-
import com.alibaba.excel.**;
83+
import com.alibaba.excel.*;
8484
```
8585

8686
Replace with:
8787

8888
```java
89-
import cn.idev.excel.** ;
89+
import cn.idev.excel.*;
9090
```
9191

9292
### 3. Import FastExcel Without Modifying Code

README_JP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949
}
5050
```
5151
## 更新する
52-
具体的なバージョンアップ内容は[バージョンアップ詳細](update.md)で確認できます。 [Maven Central Repository](https://mvnrepository.com/artifact/cn.idev.excel/fastexcel) 内のすべてのバージョンをクエリすることもできます。
52+
具体的なバージョンアップ内容は[バージョンアップ詳細](CHANGELOG.md)で確認できます。 [Maven Central Repository](https://mvnrepository.com/artifact/cn.idev.excel/fastexcel) 内のすべてのバージョンをクエリすることもできます。
5353
## EasyExcelとFastExcelの違い
5454
- FastExcelはEasyExcelのすべての機能をサポートしていますが、FastExcelのパフォーマンスはより良く、より安定しています。
5555
- FastExcelとEasyExcelのAPIは完全に一致しているため、シームレスに切り替えることができます。
@@ -77,11 +77,11 @@ EasyExcelの依存関係をFastExcelの依存関係に置き換えます。以
7777
EasyExcelのパッケージ名をFastExcelのパッケージ名に置き換えます。以下のように:
7878
```java
7979
// EasyExcelのパッケージ名をFastExcelのパッケージ名に置き換えます
80-
import com.alibaba.excel.**;
80+
import com.alibaba.excel.*;
8181
```
8282
を以下に置き換えます
8383
```java
84-
import cn.idev.excel.** ;
84+
import cn.idev.excel.*;
8585
```
8686
### 3. コードを修正せずにFastExcelを直接依存する
8787
何らかの理由でコードを修正したくない場合は、FastExcelに直接依存し、pom.xmlファイル内でFastExcelに直接依存できます。EasyExcelとFastExcelは共存できますが、長期的にはFastExcelを使用することを推奨します。

fastexcel-core/pom.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,12 @@
66
<parent>
77
<groupId>cn.idev.excel</groupId>
88
<artifactId>fastexcel-parent</artifactId>
9-
<version>${revision}</version>
9+
<version>1.1.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

13-
<url>https://github.com/CodePhiliaX/fastexcel</url>
14-
<packaging>jar</packaging>
1513
<artifactId>fastexcel-core</artifactId>
1614
<name>fastexcel-core</name>
17-
<version>${revision}</version>
18-
1915

2016
<dependencies>
2117
<dependency>

fastexcel-support/pom.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@
77
<parent>
88
<groupId>cn.idev.excel</groupId>
99
<artifactId>fastexcel-parent</artifactId>
10-
<version>${revision}</version>
10+
<version>1.1.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

14-
<url>https://github.com/CodePhiliaX/fastexcel</url>
15-
<packaging>jar</packaging>
1614
<artifactId>fastexcel-support</artifactId>
1715
<name>fastexcel-support</name>
18-
<version>${revision}</version>
1916

2017
<properties>
2118
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -102,6 +99,5 @@
10299
</executions>
103100
</plugin>
104101
</plugins>
105-
106102
</build>
107103
</project>

0 commit comments

Comments
 (0)