Skip to content

Commit 39d8428

Browse files
author
smallchill
committed
🎉 2.2.0.RELEASE
1 parent 3d734c7 commit 39d8428

File tree

59 files changed

+716
-234
lines changed

Some content is hidden

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

59 files changed

+716
-234
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## 在线演示
99
* Sword演示地址:[https://sword.bladex.vip](https://sword.bladex.vip)
10-
* Saber演示地址:[https://saber.avue.top](https://saber.avue.top)
10+
* Saber演示地址:[https://saber.bladex.vip](https://saber.bladex.vip)
1111

1212
## 后端项目地址
1313
* [Gitee地址](https://gitee.com/smallc/SpringBlade)

blade-auth/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>SpringBlade</artifactId>
1010
<groupId>org.springblade</groupId>
11-
<version>2.1.0</version>
11+
<version>2.2.0</version>
1212
</parent>
1313

1414
<artifactId>blade-auth</artifactId>
@@ -48,6 +48,12 @@
4848
<artifactId>blade-core-swagger</artifactId>
4949
<version>${blade.tool.version}</version>
5050
</dependency>
51+
<!-- MySQL -->
52+
<dependency>
53+
<groupId>mysql</groupId>
54+
<artifactId>mysql-connector-java</artifactId>
55+
<scope>runtime</scope>
56+
</dependency>
5157
</dependencies>
5258

5359
<build>

blade-auth/src/main/java/org/springblade/auth/controller/AuthController.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import io.swagger.annotations.ApiOperation;
2020
import io.swagger.annotations.ApiParam;
2121
import lombok.AllArgsConstructor;
22+
import org.springblade.core.launch.constant.TokenConstant;
2223
import org.springblade.core.secure.AuthInfo;
2324
import org.springblade.core.secure.utils.SecureUtil;
2425
import org.springblade.core.tool.api.R;
@@ -48,7 +49,7 @@ public class AuthController {
4849

4950
@PostMapping("token")
5051
@ApiOperation(value = "获取认证token", notes = "传入租户编号:tenantCode,账号:account,密码:password")
51-
public R<AuthInfo> token(@ApiParam(value = "租户编号", required = true) @RequestParam String tenantCode,
52+
public R<AuthInfo> token(@ApiParam(value = "租户编号", required = true) @RequestParam(defaultValue = "000000", required = false) String tenantCode,
5253
@ApiParam(value = "账号", required = true) @RequestParam String account,
5354
@ApiParam(value = "密码", required = true) @RequestParam String password) {
5455

@@ -67,12 +68,12 @@ public R<AuthInfo> token(@ApiParam(value = "租户编号", required = true) @Req
6768

6869
//设置jwt参数
6970
Map<String, String> param = new HashMap<>(16);
70-
param.put(SecureUtil.USER_ID, Func.toStr(user.getId()));
71-
param.put(SecureUtil.ROLE_ID, user.getRoleId());
72-
param.put(SecureUtil.TENANT_CODE, user.getTenantCode());
73-
param.put(SecureUtil.ACCOUNT, user.getAccount());
74-
param.put(SecureUtil.USER_NAME, user.getRealName());
75-
param.put(SecureUtil.ROLE_NAME, Func.join(res.getData().getRoles()));
71+
param.put(TokenConstant.USER_ID, Func.toStr(user.getId()));
72+
param.put(TokenConstant.ROLE_ID, user.getRoleId());
73+
param.put(TokenConstant.TENANT_CODE, user.getTenantCode());
74+
param.put(TokenConstant.ACCOUNT, user.getAccount());
75+
param.put(TokenConstant.USER_NAME, user.getRealName());
76+
param.put(TokenConstant.ROLE_NAME, Func.join(res.getData().getRoles()));
7677

7778
//拼装accessToken
7879
String accessToken = SecureUtil.createJWT(param, "audience", "issuser", true);
@@ -83,7 +84,7 @@ public R<AuthInfo> token(@ApiParam(value = "租户编号", required = true) @Req
8384
authInfo.setUserName(user.getRealName());
8485
authInfo.setAuthority(Func.join(res.getData().getRoles()));
8586
authInfo.setAccessToken(accessToken);
86-
authInfo.setTokenType(SecureUtil.BEARER);
87+
authInfo.setTokenType(TokenConstant.BEARER);
8788
//设置token过期时间
8889
authInfo.setExpiresIn(SecureUtil.getExpire());
8990
return R.data(authInfo);
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#服务器端口
2+
server:
3+
port: 8100
4+
5+
#数据源配置
6+
spring:
7+
datasource:
8+
driver-class-name: com.mysql.jdbc.Driver
9+
url: ${blade.datasource.dev.url}
10+
username: ${blade.datasource.dev.username}
11+
password: ${blade.datasource.dev.password}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#服务器端口
2+
server:
3+
port: 8100
4+
5+
#数据源配置
6+
spring:
7+
datasource:
8+
driver-class-name: com.mysql.jdbc.Driver
9+
url: ${blade.datasource.prod.url}
10+
username: ${blade.datasource.prod.username}
11+
password: ${blade.datasource.prod.password}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#服务器端口
2+
server:
3+
port: 8100
4+
5+
#数据源配置
6+
spring:
7+
datasource:
8+
driver-class-name: com.mysql.jdbc.Driver
9+
url: ${blade.datasource.test.url}
10+
username: ${blade.datasource.test.username}
11+
password: ${blade.datasource.test.password}

blade-auth/src/main/resources/bootstrap.yml

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

blade-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>SpringBlade</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-common/src/main/java/org/springblade/common/constant/CommonConstant.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public interface CommonConstant {
1515
/**
1616
* nacos prod 地址
1717
*/
18-
String NACOS_PROD_ADDR = "192.168.186.129:8848";
18+
String NACOS_PROD_ADDR = "172.30.0.48:8848";
1919

2020
/**
2121
* sentinel dev 地址
@@ -25,7 +25,7 @@ public interface CommonConstant {
2525
/**
2626
* sentinel prod 地址
2727
*/
28-
String SENTINEL_PROD_ADDR = "192.168.186.129:8858";
28+
String SENTINEL_PROD_ADDR = "172.30.0.58:8858";
2929

3030
/**
3131
* sword 系统名

blade-gateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>SpringBlade</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-ops/blade-admin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>blade-ops</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-ops/blade-develop/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springblade</groupId>
88
<artifactId>blade-ops</artifactId>
9-
<version>2.1.0</version>
9+
<version>2.2.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

blade-ops/blade-develop/src/main/resources/templates/props/generator.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
1+
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
22
spring.datasource.url=jdbc:mysql://localhost:3306/blade?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&tinyInt1isBit=false&serverTimezone=GMT%2B8
33
spring.datasource.username=root
44
spring.datasource.password=root
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
2-
VALUES ('000000', 0, '$!{cfg.entityKey}', '$!{cfg.codeName}', 'menu', '/$!{cfg.servicePackage}/$!{cfg.entityKey}', NULL, 1, 1, 0, 1, NULL, 0);
1+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
2+
VALUES (0, '$!{cfg.entityKey}', '$!{cfg.codeName}', 'menu', '/$!{cfg.servicePackage}/$!{cfg.entityKey}', NULL, 1, 1, 0, 1, NULL, 0);
33
set @parentid = (SELECT LAST_INSERT_ID());
4-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
5-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_add', '新增', 'add', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/add', 'plus', 1, 2, 1, 1, NULL, 0);
6-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
7-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_edit', '修改', 'edit', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/edit', 'form', 2, 2, 1, 2, NULL, 0);
8-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
9-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_delete', '删除', 'delete', '/api/$!{cfg.serviceName}/$!{cfg.entityKey}/remove', 'delete', 3, 2, 1, 3, NULL, 0);
10-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
11-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_view', '查看', 'view', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/view', 'file-text', 4, 2, 1, 2, NULL, 0);
4+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
5+
VALUES (@parentid, '$!{cfg.entityKey}_add', '新增', 'add', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/add', 'plus', 1, 2, 1, 1, NULL, 0);
6+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
7+
VALUES (@parentid, '$!{cfg.entityKey}_edit', '修改', 'edit', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/edit', 'form', 2, 2, 1, 2, NULL, 0);
8+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
9+
VALUES (@parentid, '$!{cfg.entityKey}_delete', '删除', 'delete', '/api/$!{cfg.serviceName}/$!{cfg.entityKey}/remove', 'delete', 3, 2, 1, 3, NULL, 0);
10+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
11+
VALUES (@parentid, '$!{cfg.entityKey}_view', '查看', 'view', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/view', 'file-text', 4, 2, 1, 2, NULL, 0);

blade-ops/blade-develop/src/test/resources/templates/props/generator.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
1+
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
22
spring.datasource.url=jdbc:mysql://localhost:3306/blade?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&tinyInt1isBit=false&serverTimezone=GMT%2B8
33
spring.datasource.username=root
44
spring.datasource.password=root
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
2-
VALUES ('000000', 0, '$!{cfg.entityKey}', '$!{cfg.codeName}', 'menu', '/$!{cfg.servicePackage}/$!{cfg.entityKey}', NULL, 1, 1, 0, 1, NULL, 0);
1+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
2+
VALUES (0, '$!{cfg.entityKey}', '$!{cfg.codeName}', 'menu', '/$!{cfg.servicePackage}/$!{cfg.entityKey}', NULL, 1, 1, 0, 1, NULL, 0);
33
set @parentid = (SELECT LAST_INSERT_ID());
4-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
5-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_add', '新增', 'add', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/add', 'plus', 1, 2, 1, 1, NULL, 0);
6-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
7-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_edit', '修改', 'edit', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/edit', 'form', 2, 2, 1, 2, NULL, 0);
8-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
9-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_delete', '删除', 'delete', '/api/$!{cfg.serviceName}/$!{cfg.entityKey}/remove', 'delete', 3, 2, 1, 3, NULL, 0);
10-
INSERT INTO `blade_menu`(`tenant_code`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
11-
VALUES ('000000', @parentid, '$!{cfg.entityKey}_view', '查看', 'view', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/view', 'file-text', 4, 2, 1, 2, NULL, 0);
4+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
5+
VALUES (@parentid, '$!{cfg.entityKey}_add', '新增', 'add', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/add', 'plus', 1, 2, 1, 1, NULL, 0);
6+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
7+
VALUES (@parentid, '$!{cfg.entityKey}_edit', '修改', 'edit', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/edit', 'form', 2, 2, 1, 2, NULL, 0);
8+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
9+
VALUES (@parentid, '$!{cfg.entityKey}_delete', '删除', 'delete', '/api/$!{cfg.serviceName}/$!{cfg.entityKey}/remove', 'delete', 3, 2, 1, 3, NULL, 0);
10+
INSERT INTO `blade_menu`(`parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `remark`, `is_deleted`)
11+
VALUES (@parentid, '$!{cfg.entityKey}_view', '查看', 'view', '/$!{cfg.servicePackage}/$!{cfg.entityKey}/view', 'file-text', 4, 2, 1, 2, NULL, 0);

blade-ops/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>SpringBlade</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-service-api/blade-desk-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>blade-service-api</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-service-api/blade-dict-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>blade-service-api</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-service-api/blade-system-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>blade-service-api</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/**
2+
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 ([email protected]).
3+
* <p>
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* <p>
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
* <p>
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package org.springblade.system.entity;
17+
18+
import com.baomidou.mybatisplus.annotation.TableName;
19+
import io.swagger.annotations.ApiModel;
20+
import io.swagger.annotations.ApiModelProperty;
21+
import lombok.Data;
22+
import lombok.EqualsAndHashCode;
23+
import org.springblade.core.mp.base.BaseEntity;
24+
25+
/**
26+
* 实体类
27+
*
28+
* @author BladeX
29+
* @since 2019-03-24
30+
*/
31+
@Data
32+
@TableName("blade_client")
33+
@EqualsAndHashCode(callSuper = true)
34+
@ApiModel(value = "Client对象", description = "Client对象")
35+
public class AuthClient extends BaseEntity {
36+
37+
private static final long serialVersionUID = 1L;
38+
39+
/**
40+
* 客户端id
41+
*/
42+
@ApiModelProperty(value = "客户端id")
43+
private String clientId;
44+
/**
45+
* 客户端密钥
46+
*/
47+
@ApiModelProperty(value = "客户端密钥")
48+
private String clientSecret;
49+
/**
50+
* 资源集合
51+
*/
52+
@ApiModelProperty(value = "资源集合")
53+
private String resourceIds;
54+
/**
55+
* 授权范围
56+
*/
57+
@ApiModelProperty(value = "授权范围")
58+
private String scope;
59+
/**
60+
* 授权类型
61+
*/
62+
@ApiModelProperty(value = "授权类型")
63+
private String authorizedGrantTypes;
64+
/**
65+
* 回调地址
66+
*/
67+
@ApiModelProperty(value = "回调地址")
68+
private String webServerRedirectUri;
69+
/**
70+
* 权限
71+
*/
72+
@ApiModelProperty(value = "权限")
73+
private String authorities;
74+
/**
75+
* 令牌过期秒数
76+
*/
77+
@ApiModelProperty(value = "令牌过期秒数")
78+
private Integer accessTokenValidity;
79+
/**
80+
* 刷新令牌过期秒数
81+
*/
82+
@ApiModelProperty(value = "刷新令牌过期秒数")
83+
private Integer refreshTokenValidity;
84+
/**
85+
* 附加说明
86+
*/
87+
@ApiModelProperty(value = "附加说明")
88+
private String additionalInformation;
89+
/**
90+
* 自动授权
91+
*/
92+
@ApiModelProperty(value = "自动授权")
93+
private String autoapprove;
94+
95+
96+
}

blade-service-api/blade-user-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>blade-service-api</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-service-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<artifactId>SpringBlade</artifactId>
77
<groupId>org.springblade</groupId>
8-
<version>2.1.0</version>
8+
<version>2.2.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>blade-service-api</artifactId>
1313
<name>${project.artifactId}</name>
14-
<version>2.1.0</version>
14+
<version>2.2.0</version>
1515
<packaging>pom</packaging>
1616
<description>SpringBlade 微服务API集合</description>
1717

blade-service/blade-desk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springblade</groupId>
88
<artifactId>blade-service</artifactId>
9-
<version>2.1.0</version>
9+
<version>2.2.0</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)