Skip to content

Commit 8c6545d

Browse files
committed
初始化2.0.5.RC1版本
1 parent df47deb commit 8c6545d

File tree

37 files changed

+95
-49
lines changed

37 files changed

+95
-49
lines changed

README.md

Lines changed: 1 addition & 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.4.RELEASE</version>
53+
<version>2.0.5.RC1</version>
5454
<type>pom</type>
5555
<scope>import</scope>
5656
</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.4.RELEASE</version>
8+
<version>2.0.5.RC1</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.RELEASE";
48+
private String version = "2.0.5.RC1";
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.4.RELEASE</version>
8+
<version>2.0.5.RC1</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: 24 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.RELEASE</version>
8+
<version>2.0.5.RC1</version>
99
<relativePath>../..</relativePath>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -30,6 +30,11 @@
3030
<aliyun.sdk.dysmsapi.version>1.1.0</aliyun.sdk.dysmsapi.version>
3131
<quartz.version>2.3.0</quartz.version>
3232
<spring.tx.version>5.1.5.RELEASE</spring.tx.version>
33+
34+
<!--Plugin Versions-->
35+
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
36+
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>
37+
3338
</properties>
3439
<dependencyManagement>
3540
<dependencies>
@@ -262,4 +267,22 @@
262267

263268
</dependencies>
264269
</dependencyManagement>
270+
271+
<build>
272+
<!--plugin management-->
273+
<pluginManagement>
274+
<plugins>
275+
<plugin>
276+
<groupId>org.apache.maven.plugins</groupId>
277+
<artifactId>maven-jar-plugin</artifactId>
278+
<version>${maven-jar-plugin.version}</version>
279+
</plugin>
280+
<plugin>
281+
<groupId>org.codehaus.mojo</groupId>
282+
<artifactId>build-helper-maven-plugin</artifactId>
283+
<version>${build-helper-maven-plugin.version}</version>
284+
</plugin>
285+
</plugins>
286+
</pluginManagement>
287+
</build>
265288
</project>

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

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,35 @@
55
<parent>
66
<artifactId>api-boot-dependencies</artifactId>
77
<groupId>org.minbox.framework</groupId>
8-
<version>2.0.4.RELEASE</version>
8+
<version>2.0.5.RC1</version>
99
<relativePath>../api-boot-dependencies</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
1212
<packaging>pom</packaging>
1313
<artifactId>api-boot-parent</artifactId>
1414
<description>
15-
预留starter父依赖
15+
ApiBoot Starter / Plugin Parent
1616
</description>
1717
<properties>
1818
<main.basedir>${basedir}/../..</main.basedir>
19+
<api.boot.version>${project.version}</api.boot.version>
1920
</properties>
21+
<build>
22+
<plugins>
23+
<!--Maven Jar Plugin-->
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-jar-plugin</artifactId>
27+
<configuration>
28+
<archive>
29+
<manifestEntries>
30+
<Implementation-Title>${project.name}</Implementation-Title>
31+
<Implementation-Version>${api.boot.version}</Implementation-Version>
32+
<Built-By>ApiBoot</Built-By>
33+
</manifestEntries>
34+
</archive>
35+
</configuration>
36+
</plugin>
37+
</plugins>
38+
</build>
2039
</project>

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.4.RELEASE</version>
8+
<version>2.0.5.RC1</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.4.RELEASE</version>
8+
<version>2.0.5.RC1</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.4.RELEASE</version>
8+
<version>2.0.5.RC1</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.4.RELEASE</version>
25+
<version>2.0.5.RC1</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<properties>

0 commit comments

Comments
 (0)