Skip to content

Commit e5d85f5

Browse files
committed
发布2.0.9.RELEASE
1 parent 069a55b commit e5d85f5

File tree

58 files changed

+77
-76
lines changed

Some content is hidden

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

58 files changed

+77
-76
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
<img src="http://image.yuqiyu.com/ApiBoot-Logo.png" height="200"/>
33
</p>
44
<p align="center">
5+
<a href="http://apiboot.yuqiyu.com">
6+
<img src="https://img.shields.io/badge/link-查看ApiBoot官方文档-blue.svg?style=flat-square" alt="ApiBoot官网">
7+
</a>
58
<a href="https://search.maven.org/search?q=g:org.minbox.framework">
69
<img src="https://img.shields.io/maven-central/v/org.minbox.framework/api-boot.svg?label=Maven%20Central" alt="Maven Center">
710
</a>
@@ -16,8 +19,6 @@
1619
</a>
1720
</p>
1821

19-
[详细使用文档 - ApiBoot官网](http://apiboot.yuqiyu.com)
20-
2122
`ApiBoot`是一款基于`SpringBoot1.x``SpringBoot2.x`的接口服务集成基础框架,内部提供了框架的封装集成,让接口开发者完成开箱即用,不再为搭建接口框架而犯愁,从而极大的提高开发效率。
2223
通过在我的`SpringBoot`系列教程中得到的学习者的反馈,才决定来封装一套对应我文章的基础框架,`ApiBoot`内的每一个框架的具体讲解都在文章内进行了详细说明,如果有不明白的可以通过如下途径访问我的文章:
2324

@@ -76,7 +77,7 @@
7677
<dependency>
7778
<groupId>org.minbox.framework</groupId>
7879
<artifactId>api-boot-dependencies</artifactId>
79-
<version>2.0.9-SNAPSHOT</version>
80+
<version>2.0.9.RELEASE</version>
8081
<type>pom</type>
8182
<scope>import</scope>
8283
</dependency>

api-boot-project/api-boot-autoconfigure/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.9-SNAPSHOT</version>
8+
<version>2.0.9.RELEASE</version>
99
<relativePath>../api-boot-parent</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

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.9-SNAPSHOT";
48+
private String version = "2.0.9.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.9-SNAPSHOT ::
9+
:: ApiBoot Version : v2.0.9.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.9-SNAPSHOT</version>
8+
<version>2.0.9.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: 2 additions & 2 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.9-SNAPSHOT</version>
8+
<version>2.0.9.RELEASE</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -15,7 +15,7 @@
1515
<properties>
1616
<main.basedir>${basedir}/../..</main.basedir>
1717
<spring.boot.version>2.1.5.RELEASE</spring.boot.version>
18-
<api.boot.version>2.0.9-SNAPSHOT</api.boot.version>
18+
<api.boot.version>2.0.9.RELEASE</api.boot.version>
1919
<druid.version>1.1.14</druid.version>
2020
<druid.starter.version>1.1.14</druid.starter.version>
2121
<fastjson.version>1.2.56</fastjson.version>

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.9-SNAPSHOT</version>
25+
<version>2.0.9.RELEASE</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<packaging>maven-plugin</packaging>

api-boot-project/api-boot-maven-plugins/api-boot-mybatis-enhance-maven-codegen/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.9-SNAPSHOT</version>
25+
<version>2.0.9.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.9-SNAPSHOT</version>
25+
<version>2.0.9.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.9-SNAPSHOT</version>
8+
<version>2.0.9.RELEASE</version>
99
<relativePath>../api-boot-dependencies</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)