Skip to content

Commit d64cc71

Browse files
committed
升级2.0.4.RELEASE
1 parent 5ae271f commit d64cc71

File tree

41 files changed

+104
-55
lines changed

Some content is hidden

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

41 files changed

+104
-55
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.3.RELEASE</version>
53+
<version>2.0.4.RELEASE</version>
5454
<type>pom</type>
5555
<scope>import</scope>
5656
</dependency>
@@ -75,6 +75,7 @@ Demo列表:
7575
- [ApiBoot Alibaba SMS](https://github.com/hengboy/api-boot/tree/master/api-boot-samples/api-boot-sample-alibaba-sms)
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)
78+
- [ApiBoot Resource Load](https://github.com/hengboy/api-boot/tree/master/api-boot-samples/api-boot-sample-resource-load)
7879

7980
## 版本管理规范
8081

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.4.RC1</version>
8+
<version>2.0.4.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.4.RC1";
48+
private String version = "2.0.4.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.3.RELEASE</version>
8+
<version>2.0.4.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: 20 additions & 1 deletion
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.4.RC1</version>
8+
<version>2.0.4.RELEASE</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -54,7 +54,14 @@
5454
<artifactId>api-boot-autoconfigure</artifactId>
5555
<version>${project.version}</version>
5656
</dependency>
57+
5758
<!--ApiBoot Converter-->
59+
<dependency>
60+
<groupId>org.minbox.framework</groupId>
61+
<artifactId>api-boot-plugin-http-converter</artifactId>
62+
<version>${project.version}</version>
63+
<optional>true</optional>
64+
</dependency>
5865
<dependency>
5966
<groupId>org.minbox.framework</groupId>
6067
<artifactId>api-boot-starter-http-converter</artifactId>
@@ -241,6 +248,18 @@
241248
<version>${project.version}</version>
242249
</dependency>
243250

251+
<!--ApiBoot Resource Load-->
252+
<dependency>
253+
<groupId>org.minbox.framework</groupId>
254+
<artifactId>api-boot-plugin-resource-load</artifactId>
255+
<version>${project.version}</version>
256+
</dependency>
257+
<dependency>
258+
<groupId>org.minbox.framework</groupId>
259+
<artifactId>api-boot-starter-resource-load</artifactId>
260+
<version>${project.version}</version>
261+
</dependency>
262+
244263
</dependencies>
245264
</dependencyManagement>
246265
</project>

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.3.RELEASE</version>
8+
<version>2.0.4.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.3.RELEASE</version>
8+
<version>2.0.4.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.3.RELEASE</version>
8+
<version>2.0.4.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.3.RELEASE</version>
8+
<version>2.0.4.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: 7 additions & 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.4.RC1</version>
25+
<version>2.0.4.RELEASE</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<properties>
@@ -45,5 +45,11 @@
4545
<artifactId>fastjson</artifactId>
4646
<optional>true</optional>
4747
</dependency>
48+
<!--Spring Code-->
49+
<dependency>
50+
<groupId>org.springframework</groupId>
51+
<artifactId>spring-core</artifactId>
52+
<optional>true</optional>
53+
</dependency>
4854
</dependencies>
4955
</project>

0 commit comments

Comments
 (0)