Skip to content

Commit 9f71258

Browse files
committed
3.0.0 init
1 parent 19cf777 commit 9f71258

8 files changed

Lines changed: 14 additions & 406 deletions

File tree

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) 2018-2023 Erwin Feng
3+
Copyright (c) 2018-2024 Erwin Feng
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

LOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
:bug: Bug
99
```
1010

11+
## v3.0.0
12+
13+
14+
1115
## v2.2.8
1216

1317
:star: Feature

README.md

Lines changed: 3 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<img src="https://img.shields.io/:license-apache-blue.svg" ></img>
1313
</a>
1414
<a target="_blank" href="https://www.oracle.com/technetwork/java/javase/downloads/index.html">
15-
<img src="https://img.shields.io/badge/JDK-1.8+-green.svg" ></img>
15+
<img src="https://img.shields.io/badge/JDK-17+-green.svg" ></img>
1616
</a>
1717
<a target="_blank" href='https://github.com/fengwenyi/JavaLib'>
1818
<img src="https://img.shields.io/github/stars/fengwenyi/JavaLib.svg?style=social" alt="github star"></img>
@@ -37,50 +37,21 @@ JavaLib,是一个Java开发基础工具类库,对项目开发中常用的工
3737
<dependency>
3838
<groupId>com.fengwenyi</groupId>
3939
<artifactId>JavaLib</artifactId>
40-
<version>2.2.8</version>
40+
<version>3.0.0</version>
4141
</dependency>
4242
```
4343

4444
**Gradle**
4545

4646
```groovy
47-
implementation 'com.fengwenyi:JavaLib:2.2.8'
47+
implementation 'com.fengwenyi:JavaLib:3.0.0'
4848
```
4949

5050
## 功能列表:
5151

52-
| 名称 | 描述 | 发布版本 | 发布日期 |
53-
|-----------------|-------------|:------:|:----------:|
54-
| DateTimeUtils | 日期时间工具类 | - | 2020.04.30 |
55-
| JsonUtils | JSON转换工具类 | - | 2020.08.22 |
56-
| XmlUtils | XML转换工具类 | - | 2020.08.22 |
57-
| BeanUtils | Bean工具类 | - | 2020.08.22 |
58-
| CollectionUtils | 集合工具类 | - | 2020.08.22 |
59-
| MapUtils | Map工具类 | - | 2020.08.22 |
60-
| RSAUtils | RSA加/解密工具类 | - | 2020.08.22 |
61-
| MD5Utils | MD5加/解密工具类 | - | 2020.08.22 |
62-
| IdUtils | Id工具类 | - | 2020.08.22 |
63-
| StringUtils | 字符串工具类 | - | 2020.08.22 |
64-
| PrintUtils | 控制台打印工具类 | - | 2020.08.22 |
65-
| ICallback | 回调接口 | - | 2020.4.30 |
66-
| StarHandleUtils | 星号处理工具类 | v2.1.2 | 2021.01.12 |
67-
| MdcUtils | MDC工具类 | v2.1.3 | 2021.08.16 |
68-
| TraceIdUtils | traceId工具类 | v2.1.3 | 2021.08.16 |
69-
| IBuilder | 构造者接口 | v2.1.4 | 2021.08.24 |
70-
| DateTimePattern | 日期时间规则常量 | v2.1.5 | 2021.12.02 |
71-
| FormatterUtils | formatter工具类 | v2.1.5 | 2021.12.02 |
72-
| MapHelper | 方便构造 Map | v2.2.0 | 2022.09.17 |
73-
| HttpUtils | http 工具类 | v2.2.2 | 2022.12.09 |
74-
| JsoupUtils | jsoup 工具类 | v2.2.2 | 2022.12.09 |
75-
| ThreadUtils | 线程工具类 | v2.2.8 | 2023.12.23 |
76-
7752

7853
### TODO LIST
7954

80-
- [x] OkHttpUtils
81-
- [ ] WebServiceUtils
82-
- [ ] AliyunOssUtils
83-
8455

8556
## 文档
8657

pom.xml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@
66

77
<groupId>com.fengwenyi</groupId>
88
<artifactId>JavaLib</artifactId>
9-
<version>2.2.8-SNAPSHOT</version>
9+
<version>3.0.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111
<name>JavaLib</name>
1212
<description>JAVA开发常用工具集</description>
1313

1414
<properties>
15+
<maven.compiler.source>8</maven.compiler.source>
16+
<maven.compiler.target>8</maven.compiler.target>
1517
<!-- 工程源码编码 -->
1618
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1719
<!-- 工程导出编码 -->
1820
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1921
<!-- 工程JDK版本 -->
20-
<java.version>1.8</java.version>
22+
<java.version>17</java.version>
2123
<encoding>UTF-8</encoding>
2224
<!-- junit版本 -->
2325
<junit.version>4.13.2</junit.version>
@@ -39,17 +41,6 @@
3941
</properties>
4042

4143
<dependencies>
42-
<!--
43-
https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api
44-
web request
45-
-->
46-
<dependency>
47-
<groupId>javax.servlet</groupId>
48-
<artifactId>javax.servlet-api</artifactId>
49-
<version>${servlet.api.version}</version>
50-
<scope>provided</scope>
51-
</dependency>
52-
5344
<!--
5445
https://mvnrepository.com/artifact/junit/junit
5546
service test / controller test / method test / interface test / or other test
@@ -191,8 +182,8 @@
191182
<artifactId>maven-compiler-plugin</artifactId>
192183
<version>3.8.1</version>
193184
<configuration>
194-
<source>1.8</source>
195-
<target>1.8</target>
185+
<source>${java.version}</source>
186+
<target>${java.version}</target>
196187
<encoding>${encoding}</encoding>
197188
</configuration>
198189
</plugin>

src/main/java/com/fengwenyi/javalib/constant/CharsetConstant.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/main/java/com/fengwenyi/javalib/constant/DateTimePattern.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/main/java/com/fengwenyi/javalib/net/RequestUtils.java

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)