Skip to content

Commit 5e415d6

Browse files
committed
发布2.0.6.RELEASE版本.
1 parent fb01b83 commit 5e415d6

File tree

51 files changed

+170
-82
lines changed

Some content is hidden

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

51 files changed

+170
-82
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<dependency>
6666
<groupId>org.minbox.framework</groupId>
6767
<artifactId>api-boot-dependencies</artifactId>
68-
<version>2.0.6.RC1</version>
68+
<version>2.0.6.RELEASE</version>
6969
<type>pom</type>
7070
<scope>import</scope>
7171
</dependency>

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

Lines changed: 22 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.RELEASE</version>
8+
<version>2.0.6.RELEASE</version>
99
<relativePath>../api-boot-parent</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -161,5 +161,26 @@
161161
<optional>true</optional>
162162
</dependency>
163163

164+
<!--ApiBoot Mybatis Pageable-->
165+
<dependency>
166+
<groupId>com.gitee.hengboy</groupId>
167+
<artifactId>mybatis-pageable-core</artifactId>
168+
<optional>true</optional>
169+
</dependency>
170+
171+
<!--ApiBoot Mybatis Enhance-->
172+
<dependency>
173+
<groupId>com.gitee.hengboy</groupId>
174+
<artifactId>mybatis-enhance-core</artifactId>
175+
<optional>true</optional>
176+
</dependency>
177+
178+
<!--ApiBoot RateLimiter-->
179+
<dependency>
180+
<groupId>org.minbox.framework</groupId>
181+
<artifactId>api-boot-plugin-rate-limiter</artifactId>
182+
<optional>true</optional>
183+
</dependency>
184+
164185
</dependencies>
165186
</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.RELEASE";
48+
private String version = "2.0.6.RELEASE";
4949
/**
5050
* 文档版权
5151
*/

api-boot-project/api-boot-autoconfigure/src/main/resources/banner.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
|
77
'
88
:: Based On SpringBoot Version : ${spring-boot.formatted-version} ::
9-
:: ApiBoot Version : v2.0.6.RC1 ::
9+
:: ApiBoot Version : v2.0.6.RELEASE ::

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.RELEASE</version>
8+
<version>2.0.6.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: 82 additions & 16 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.RELEASE</version>
8+
<version>2.0.6.RELEASE</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -15,9 +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>
19-
<mybatis.enhance.version>1.1.0.RELEASE</mybatis.enhance.version>
20-
<mybatis.pageable.version>1.0.6.RELEASE</mybatis.pageable.version>
18+
<api.boot.version>2.0.6.RELEASE</api.boot.version>
2119
<druid.version>1.1.14</druid.version>
2220
<druid.starter.version>1.1.14</druid.starter.version>
2321
<fastjson.version>1.2.56</fastjson.version>
@@ -32,6 +30,14 @@
3230
<quartz.version>2.3.0</quartz.version>
3331
<spring.tx.version>5.1.5.RELEASE</spring.tx.version>
3432
<jpush-client.version>3.3.11</jpush-client.version>
33+
<maven-plugin-api.version>3.6.1</maven-plugin-api.version>
34+
<maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version>
35+
<maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>
36+
<!--Builder Core Version-->
37+
<code.builder.core.version>1.0.5.RELEASE</code.builder.core.version>
38+
<mybatis.pageable.core.version>1.0.6.RELEASE</mybatis.pageable.core.version>
39+
<mybatis.enhance.core.version>1.1.0.RELEASE</mybatis.enhance.core.version>
40+
<mybatis.enhance.dsl.version>1.0.7.RELEASE</mybatis.enhance.dsl.version>
3541

3642
<!--Plugin Versions-->
3743
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
@@ -99,18 +105,6 @@
99105
<artifactId>druid-spring-boot-starter</artifactId>
100106
<version>${druid.starter.version}</version>
101107
</dependency>
102-
<!--mybatis enhance-->
103-
<dependency>
104-
<groupId>com.gitee.hengboy</groupId>
105-
<artifactId>spring-boot-starter-mybatis-enhance</artifactId>
106-
<version>${mybatis.enhance.version}</version>
107-
</dependency>
108-
<!--mybatis pageable-->
109-
<dependency>
110-
<groupId>com.gitee.hengboy</groupId>
111-
<artifactId>spring-boot-starter-mybatis-pageable</artifactId>
112-
<version>${mybatis.pageable.version}</version>
113-
</dependency>
114108

115109
<!--reflections-->
116110
<dependency>
@@ -131,6 +125,19 @@
131125
<version>${spring.tx.version}</version>
132126
</dependency>
133127

128+
<!--Maven Plugin-->
129+
<dependency>
130+
<groupId>org.apache.maven</groupId>
131+
<artifactId>maven-plugin-api</artifactId>
132+
<version>${maven-plugin-api.version}</version>
133+
</dependency>
134+
<dependency>
135+
<groupId>org.apache.maven.plugin-tools</groupId>
136+
<artifactId>maven-plugin-annotations</artifactId>
137+
<version>${maven-plugin-annotations.version}</version>
138+
</dependency>
139+
140+
134141
<!--ApiBoot Swagger-->
135142
<dependency>
136143
<groupId>io.springfox</groupId>
@@ -284,6 +291,54 @@
284291
<version>${api.boot.version}</version>
285292
</dependency>
286293

294+
<!--ApiBoot Code Builder-->
295+
<dependency>
296+
<groupId>com.gitee.hengboy</groupId>
297+
<artifactId>code-builder-core</artifactId>
298+
<version>${code.builder.core.version}</version>
299+
</dependency>
300+
301+
<!--ApiBoot Mybatis Pageable-->
302+
<dependency>
303+
<groupId>com.gitee.hengboy</groupId>
304+
<artifactId>mybatis-pageable-core</artifactId>
305+
<version>${mybatis.pageable.core.version}</version>
306+
</dependency>
307+
<dependency>
308+
<groupId>org.minbox.framework</groupId>
309+
<artifactId>api-boot-starter-mybatis-pageable</artifactId>
310+
<version>${api.boot.version}</version>
311+
</dependency>
312+
313+
<!--ApiBoot Mybatis Enhance-->
314+
<dependency>
315+
<groupId>com.gitee.hengboy</groupId>
316+
<artifactId>mybatis-enhance-core</artifactId>
317+
<version>${mybatis.enhance.core.version}</version>
318+
</dependency>
319+
<dependency>
320+
<groupId>com.gitee.hengboy</groupId>
321+
<artifactId>mybatis-enhance-dsl</artifactId>
322+
<version>${mybatis.enhance.dsl.version}</version>
323+
</dependency>
324+
<dependency>
325+
<groupId>org.minbox.framework</groupId>
326+
<artifactId>api-boot-starter-mybatis-enhance</artifactId>
327+
<version>${api.boot.version}</version>
328+
</dependency>
329+
330+
<!--ApiBoot RateLimiter-->
331+
<dependency>
332+
<groupId>org.minbox.framework</groupId>
333+
<artifactId>api-boot-plugin-rate-limiter</artifactId>
334+
<version>${api.boot.version}</version>
335+
</dependency>
336+
<dependency>
337+
<groupId>org.minbox.framework</groupId>
338+
<artifactId>api-boot-starter-rate-limiter</artifactId>
339+
<version>${api.boot.version}</version>
340+
</dependency>
341+
287342
</dependencies>
288343
</dependencyManagement>
289344

@@ -301,6 +356,17 @@
301356
<artifactId>build-helper-maven-plugin</artifactId>
302357
<version>${build-helper-maven-plugin.version}</version>
303358
</plugin>
359+
<!--ApiBoot Code Builder-->
360+
<plugin>
361+
<groupId>org.minbox.framework</groupId>
362+
<artifactId>api-boot-maven-plugin-code-builder</artifactId>
363+
<version>${api.boot.version}</version>
364+
</plugin>
365+
<plugin>
366+
<groupId>org.apache.maven.plugins</groupId>
367+
<artifactId>maven-plugin-plugin</artifactId>
368+
<version>${maven-plugin-plugin.version}</version>
369+
</plugin>
304370
</plugins>
305371
</pluginManagement>
306372
</build>

api-boot-project/api-boot-maven-plugins/api-boot-maven-plugin-code-builder/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-maven-plugins</artifactId>
2424
<groupId>org.minbox.framework</groupId>
25-
<version>2.0.6.RC1</version>
25+
<version>2.0.6.RELEASE</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<packaging>maven-plugin</packaging>

api-boot-project/api-boot-maven-plugins/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-parent</artifactId>
2424
<groupId>org.minbox.framework</groupId>
25-
<version>2.0.6.RC1</version>
25+
<version>2.0.6.RELEASE</version>
2626
<relativePath>../api-boot-parent</relativePath>
2727
</parent>
2828
<modelVersion>4.0.0</modelVersion>

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.RELEASE</version>
8+
<version>2.0.6.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.RELEASE</version>
8+
<version>2.0.6.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<description>ApiBoot Plugin 阿里云 对象存储oss</description>

0 commit comments

Comments
 (0)