Skip to content

Commit 0e9dc91

Browse files
authored
v5.9.3
v5.9.3
2 parents bcbe83c + 9683324 commit 0e9dc91

File tree

2,557 files changed

+21047
-10763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,557 files changed

+21047
-10763
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MIT License
1+
The MIT License (MIT)
22

33
Copyright (c) 2015-2020 aoju.org and other contributors.
44

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<a target="_blank" href="https://search.maven.org/search?q=org.aoju">
3-
<img src="https://img.shields.io/badge/maven--central-v5.9.2-blue.svg?label=Maven%20Central" />
3+
<img src="https://img.shields.io/badge/maven--central-v5.9.3-blue.svg?label=Maven%20Central" />
44
</a>
55
<a target="_blank" href="https://travis-ci.org/aoju/bus">
66
<img src="https://travis-ci.org/aoju/bus.svg?branch=master">
@@ -9,7 +9,7 @@
99
<img src="https://img.shields.io/badge/JDK-1.8+-green.svg">
1010
</a>
1111
<a target="_blank" href="https://spring.io/projects/spring-boot">
12-
<img src="https://img.shields.io/badge/Spring Boot-2.2.5-brightgreen.svg">
12+
<img src="https://img.shields.io/badge/Spring Boot-2.3.0-brightgreen.svg">
1313
</a>
1414
<a target="_blank" href="https://www.mysql.com">
1515
<img src="https://img.shields.io/badge/Mysql-5.7-blue.svg">
@@ -23,7 +23,7 @@
2323
<a target="_blank" href="http://poi.apache.org">
2424
<img src="https://img.shields.io/badge/poi-4.1.2-blue.svg">
2525
</a>
26-
<a target="_blank" href="https://www.mit-license.org">
26+
<a target="_blank" href="https://opensource.org/licenses/MIT">
2727
<img src="https://img.shields.io/badge/license-MIT-green.svg">
2828
</a>
2929
</p>
@@ -95,7 +95,7 @@ Bus (应用/服务总线) 是一个微服务套件、基础框架,它基于Jav
9595
<dependency>
9696
<groupId>org.aoju</groupId>
9797
<artifactId>bus-all</artifactId>
98-
<version>5.9.2</version>
98+
<version>5.9.3</version>
9999
</dependency>
100100
```
101101
或者单独使用某个组建
@@ -109,7 +109,7 @@ Bus (应用/服务总线) 是一个微服务套件、基础框架,它基于Jav
109109

110110
### Gradle
111111
```
112-
implementation 'org.aoju:bus-all:5.9.2'
112+
implementation 'org.aoju:bus-all:5.9.3'
113113
```
114114

115115
### Downlad
@@ -152,7 +152,7 @@ Open sourced under the MIT license.
152152

153153
### JetBrains
154154

155-
Thanks JetBrains for the free license.
155+
Thanks JetBrains for the OpenSource license.
156156

157157
感谢JetBrains提供IDEA免费license
158158

bus-all/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.aoju</groupId>
88
<artifactId>bus-all</artifactId>
9-
<version>5.9.2</version>
9+
<version>5.9.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
@@ -186,8 +186,8 @@
186186

187187
<licenses>
188188
<license>
189-
<name>The MIT License</name>
190-
<url>https://www.mit-license.org</url>
189+
<name>The MIT License (MIT)</name>
190+
<url>https://opensource.org/licenses/MIT</url>
191191
</license>
192192
</licenses>
193193

bus-all/src/main/java/org/aoju/bus/Bus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*********************************************************************************
22
* *
3-
* The MIT License *
3+
* The MIT License (MIT) *
44
* *
55
* Copyright (c) 2015-2020 aoju.org and other contributors. *
66
* *
@@ -42,7 +42,7 @@
4242
* </p>
4343
*
4444
* @author Kimi Liu
45-
* @version 5.9.2
45+
* @version 5.9.3
4646
* @since JDK 1.8+
4747
*/
4848
public class Bus extends Version {

bus-base/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.aoju</groupId>
88
<artifactId>bus-base</artifactId>
9-
<version>5.9.2</version>
9+
<version>5.9.3</version>
1010
<packaging>jar</packaging>
1111

1212
<name>${project.artifactId}</name>
@@ -17,6 +17,7 @@
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1919
<project.compiler.version>1.8</project.compiler.version>
20+
<spring.boot.version>2.3.0.RELEASE</spring.boot.version>
2021
<lombok.version>1.18.12</lombok.version>
2122
<swagger.version>2.9.2</swagger.version>
2223
<persistence.version>2.2</persistence.version>
@@ -124,15 +125,15 @@
124125
<dependency>
125126
<groupId>org.springframework.boot</groupId>
126127
<artifactId>spring-boot-starter-web</artifactId>
127-
<version>2.2.5.RELEASE</version>
128+
<version>${spring.boot.version}</version>
128129
<optional>true</optional>
129130
</dependency>
130131
</dependencies>
131132

132133
<licenses>
133134
<license>
134-
<name>The MIT License</name>
135-
<url>https://www.mit-license.org</url>
135+
<name>The MIT License (MIT)</name>
136+
<url>https://opensource.org/licenses/MIT</url>
136137
</license>
137138
</licenses>
138139

bus-base/src/main/java/org/aoju/bus/base/advice/BaseAdvice.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*********************************************************************************
22
* *
3-
* The MIT License *
3+
* The MIT License (MIT) *
44
* *
55
* Copyright (c) 2015-2020 aoju.org and other contributors. *
66
* *
@@ -47,7 +47,7 @@
4747
* 异常信息拦截处理
4848
*
4949
* @author Kimi Liu
50-
* @version 5.9.2
50+
* @version 5.9.3
5151
* @since JDK 1.8+
5252
*/
5353
@ControllerAdvice

bus-base/src/main/java/org/aoju/bus/base/consts/Consts.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*********************************************************************************
22
* *
3-
* The MIT License *
3+
* The MIT License (MIT) *
44
* *
55
* Copyright (c) 2015-2020 aoju.org and other contributors. *
66
* *
@@ -31,7 +31,7 @@
3131
* 公共常量
3232
*
3333
* @author Kimi Liu
34-
* @version 5.9.2
34+
* @version 5.9.3
3535
* @since JDK 1.8+
3636
*/
3737
public class Consts extends Normal {

bus-base/src/main/java/org/aoju/bus/base/consts/ErrorCode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*********************************************************************************
22
* *
3-
* The MIT License *
3+
* The MIT License (MIT) *
44
* *
55
* Copyright (c) 2015-2020 aoju.org and other contributors. *
66
* *
@@ -34,7 +34,7 @@
3434
* 系统响应码
3535
*
3636
* @author Kimi Liu
37-
* @version 5.9.2
37+
* @version 5.9.3
3838
* @since JDK 1.8+
3939
*/
4040
public class ErrorCode {

bus-base/src/main/java/org/aoju/bus/base/entity/BaseEntity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*********************************************************************************
22
* *
3-
* The MIT License *
3+
* The MIT License (MIT) *
44
* *
55
* Copyright (c) 2015-2020 aoju.org and other contributors. *
66
* *
@@ -40,7 +40,7 @@
4040
* Entity 基本信息.
4141
*
4242
* @author Kimi Liu
43-
* @version 5.9.2
43+
* @version 5.9.3
4444
* @since JDK 1.8+
4545
*/
4646
@Data

bus-base/src/main/java/org/aoju/bus/base/entity/Entity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*********************************************************************************
22
* *
3-
* The MIT License *
3+
* The MIT License (MIT) *
44
* *
55
* Copyright (c) 2015-2020 aoju.org and other contributors. *
66
* *
@@ -34,7 +34,7 @@
3434
* Entity 实体
3535
*
3636
* @author Kimi Liu
37-
* @version 5.9.2
37+
* @version 5.9.3
3838
* @since JDK 1.8+
3939
*/
4040
@Data

0 commit comments

Comments
 (0)