Skip to content

Commit 26cd81e

Browse files
committed
发布2.0.5.RELEASE版本.
1 parent 81eca63 commit 26cd81e

File tree

46 files changed

+172
-78
lines changed

Some content is hidden

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

46 files changed

+172
-78
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<dependency>
5151
<groupId>org.minbox.framework</groupId>
5252
<artifactId>api-boot-dependencies</artifactId>
53-
<version>2.0.5.RC1</version>
53+
<version>2.0.5.RELEASE</version>
5454
<type>pom</type>
5555
<scope>import</scope>
5656
</dependency>
@@ -76,6 +76,7 @@ Demo列表:
7676
- [ApiBoot Quartz](https://github.com/hengboy/api-boot/tree/master/api-boot-samples/api-boot-sample-quartz)
7777
- [ApiBoot DataSource Switch](https://github.com/hengboy/api-boot/tree/master/api-boot-samples/api-boot-sample-datasource-switch)
7878
- [ApiBoot Resource Load](https://github.com/hengboy/api-boot/tree/master/api-boot-samples/api-boot-sample-resource-load)
79+
- [ApiBoot Message Push](https://github.com/hengboy/api-boot/tree/master/api-boot-samples/api-boot-sample-message-push)
7980

8081
## 更新日志
8182

api-boot-project/api-boot-autoconfigure/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-parent</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
<relativePath>../api-boot-parent</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -153,5 +153,13 @@
153153
<artifactId>spring-boot-starter-data-redis</artifactId>
154154
<optional>true</optional>
155155
</dependency>
156+
157+
<!--ApiBoot Plugin Message Push-->
158+
<dependency>
159+
<groupId>org.minbox.framework</groupId>
160+
<artifactId>api-boot-plugin-message-push</artifactId>
161+
<optional>true</optional>
162+
</dependency>
163+
156164
</dependencies>
157165
</project>

api-boot-project/api-boot-autoconfigure/src/main/java/org/minbox/framework/api/boot/autoconfigure/swagger/SwaggerProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class SwaggerProperties {
4545
/**
4646
* 文档版本号
4747
*/
48-
private String version = "2.0.5.RC1";
48+
private String version = "2.0.5.RELEASE";
4949
/**
5050
* 文档版权
5151
*/

api-boot-project/api-boot-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>api-boot-parent</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
<relativePath>../api-boot-parent</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

api-boot-project/api-boot-dependencies/pom.xml

Lines changed: 40 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -15,6 +15,7 @@
1515
<properties>
1616
<main.basedir>${basedir}/../..</main.basedir>
1717
<spring.boot.version>2.1.4.RELEASE</spring.boot.version>
18+
<api.boot.version>2.0.5.RELEASE</api.boot.version>
1819
<mybatis.enhance.version>1.1.0.RELEASE</mybatis.enhance.version>
1920
<mybatis.pageable.version>1.0.6.RELEASE</mybatis.pageable.version>
2021
<druid.version>1.1.14</druid.version>
@@ -30,6 +31,7 @@
3031
<aliyun.sdk.dysmsapi.version>1.1.0</aliyun.sdk.dysmsapi.version>
3132
<quartz.version>2.3.0</quartz.version>
3233
<spring.tx.version>5.1.5.RELEASE</spring.tx.version>
34+
<jpush-client.version>3.3.11</jpush-client.version>
3335

3436
<!--Plugin Versions-->
3537
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
@@ -51,33 +53,33 @@
5153
<dependency>
5254
<groupId>org.minbox.framework</groupId>
5355
<artifactId>api-boot-starter</artifactId>
54-
<version>${project.version}</version>
56+
<version>${api.boot.version}</version>
5557
</dependency>
5658
<!--ApiBoot AutoConfigure-->
5759
<dependency>
5860
<groupId>org.minbox.framework</groupId>
5961
<artifactId>api-boot-autoconfigure</artifactId>
60-
<version>${project.version}</version>
62+
<version>${api.boot.version}</version>
6163
</dependency>
6264

6365
<!--ApiBoot Converter-->
6466
<dependency>
6567
<groupId>org.minbox.framework</groupId>
6668
<artifactId>api-boot-plugin-http-converter</artifactId>
67-
<version>${project.version}</version>
69+
<version>${api.boot.version}</version>
6870
<optional>true</optional>
6971
</dependency>
7072
<dependency>
7173
<groupId>org.minbox.framework</groupId>
7274
<artifactId>api-boot-starter-http-converter</artifactId>
73-
<version>${project.version}</version>
75+
<version>${api.boot.version}</version>
7476
</dependency>
7577

7678
<!--ApiBoot Common-->
7779
<dependency>
7880
<groupId>org.minbox.framework</groupId>
7981
<artifactId>api-boot-common</artifactId>
80-
<version>${project.version}</version>
82+
<version>${api.boot.version}</version>
8183
</dependency>
8284
<!--fastJson-->
8385
<dependency>
@@ -148,14 +150,14 @@
148150
<dependency>
149151
<groupId>org.minbox.framework</groupId>
150152
<artifactId>api-boot-starter-swagger</artifactId>
151-
<version>${project.version}</version>
153+
<version>${api.boot.version}</version>
152154
</dependency>
153155

154156
<!--ApiBoot Plugin-->
155157
<dependency>
156158
<groupId>org.minbox.framework</groupId>
157159
<artifactId>api-boot-plugin</artifactId>
158-
<version>${project.version}</version>
160+
<version>${api.boot.version}</version>
159161
</dependency>
160162

161163
<!--ApiBoot Security-->
@@ -172,17 +174,17 @@
172174
<dependency>
173175
<groupId>org.minbox.framework</groupId>
174176
<artifactId>api-boot-plugin-security</artifactId>
175-
<version>${project.version}</version>
177+
<version>${api.boot.version}</version>
176178
</dependency>
177179
<dependency>
178180
<groupId>org.minbox.framework</groupId>
179181
<artifactId>api-boot-plugin-oauth</artifactId>
180-
<version>${project.version}</version>
182+
<version>${api.boot.version}</version>
181183
</dependency>
182184
<dependency>
183185
<groupId>org.minbox.framework</groupId>
184186
<artifactId>api-boot-starter-security-oauth-jwt</artifactId>
185-
<version>${project.version}</version>
187+
<version>${api.boot.version}</version>
186188
</dependency>
187189

188190
<!--ApiBoot & Aliyun Oss-->
@@ -194,12 +196,12 @@
194196
<dependency>
195197
<groupId>org.minbox.framework</groupId>
196198
<artifactId>api-boot-plugin-alibaba-oss</artifactId>
197-
<version>${project.version}</version>
199+
<version>${api.boot.version}</version>
198200
</dependency>
199201
<dependency>
200202
<groupId>org.minbox.framework</groupId>
201203
<artifactId>api-boot-starter-alibaba-oss</artifactId>
202-
<version>${project.version}</version>
204+
<version>${api.boot.version}</version>
203205
</dependency>
204206

205207
<!--ApiBoot & Aliyun Sms-->
@@ -216,12 +218,12 @@
216218
<dependency>
217219
<groupId>org.minbox.framework</groupId>
218220
<artifactId>api-boot-plugin-alibaba-sms</artifactId>
219-
<version>${project.version}</version>
221+
<version>${api.boot.version}</version>
220222
</dependency>
221223
<dependency>
222224
<groupId>org.minbox.framework</groupId>
223225
<artifactId>api-boot-starter-alibaba-sms</artifactId>
224-
<version>${project.version}</version>
226+
<version>${api.boot.version}</version>
225227
</dependency>
226228

227229
<!--ApiBoot & Quartz-->
@@ -233,36 +235,53 @@
233235
<dependency>
234236
<groupId>org.minbox.framework</groupId>
235237
<artifactId>api-boot-plugin-quartz</artifactId>
236-
<version>${project.version}</version>
238+
<version>${api.boot.version}</version>
237239
</dependency>
238240
<dependency>
239241
<groupId>org.minbox.framework</groupId>
240242
<artifactId>api-boot-starter-quartz</artifactId>
241-
<version>${project.version}</version>
243+
<version>${api.boot.version}</version>
242244
</dependency>
243245

244246
<!--ApiBoot DataSource Switch-->
245247
<dependency>
246248
<groupId>org.minbox.framework</groupId>
247249
<artifactId>api-boot-plugin-datasource-switch</artifactId>
248-
<version>${project.version}</version>
250+
<version>${api.boot.version}</version>
249251
</dependency>
250252
<dependency>
251253
<groupId>org.minbox.framework</groupId>
252254
<artifactId>api-boot-starter-datasource-switch</artifactId>
253-
<version>${project.version}</version>
255+
<version>${api.boot.version}</version>
254256
</dependency>
255257

256258
<!--ApiBoot Resource Load-->
257259
<dependency>
258260
<groupId>org.minbox.framework</groupId>
259261
<artifactId>api-boot-plugin-resource-load</artifactId>
260-
<version>${project.version}</version>
262+
<version>${api.boot.version}</version>
261263
</dependency>
262264
<dependency>
263265
<groupId>org.minbox.framework</groupId>
264266
<artifactId>api-boot-starter-resource-load</artifactId>
265-
<version>${project.version}</version>
267+
<version>${api.boot.version}</version>
268+
</dependency>
269+
270+
<!--ApiBoot Message Push-->
271+
<dependency>
272+
<groupId>cn.jpush.api</groupId>
273+
<artifactId>jpush-client</artifactId>
274+
<version>${jpush-client.version}</version>
275+
</dependency>
276+
<dependency>
277+
<groupId>org.minbox.framework</groupId>
278+
<artifactId>api-boot-plugin-message-push</artifactId>
279+
<version>${api.boot.version}</version>
280+
</dependency>
281+
<dependency>
282+
<groupId>org.minbox.framework</groupId>
283+
<artifactId>api-boot-starter-message-push</artifactId>
284+
<version>${api.boot.version}</version>
266285
</dependency>
267286

268287
</dependencies>

api-boot-project/api-boot-parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-dependencies</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
<relativePath>../api-boot-dependencies</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

api-boot-project/api-boot-plugins/api-boot-plugin-alibaba-oss/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-plugins</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<description>ApiBoot Plugin 阿里云 对象存储oss</description>

api-boot-project/api-boot-plugins/api-boot-plugin-alibaba-sms/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-plugins</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<description>ApiBoot集成阿里云国际短信服务</description>

api-boot-project/api-boot-plugins/api-boot-plugin-datasource-switch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>api-boot-plugins</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.5.RC1</version>
8+
<version>2.0.5.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

api-boot-project/api-boot-plugins/api-boot-plugin-http-converter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>api-boot-plugins</artifactId>
2424
<groupId>org.minbox.framework</groupId>
25-
<version>2.0.5.RC1</version>
25+
<version>2.0.5.RELEASE</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<properties>

0 commit comments

Comments
 (0)