Skip to content

Commit a0cc794

Browse files
committed
fix bean order 问题
1 parent 8f13d50 commit a0cc794

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Distributed Configuration Management Platform(分布式配置管理平台)
2424

2525
disconf.git branches and Maven version:
2626

27-
- dev(develop branch): 2.6.26-SNAPSHOT
28-
- master(stable branch):2.6.26
27+
- dev(develop branch): 2.6.27-SNAPSHOT
28+
- master(stable branch):2.6.27
2929
- [更新日志](https://github.com/knightliao/disconf/wiki/updates)
3030

3131
在Maven Central Repository里查看 [com.baidu.disconf](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.baidu.disconf%22 )
@@ -40,7 +40,7 @@ disconf.git branches and Maven version:
4040

4141
[查看大图](http://ww1.sinaimg.cn/mw1024/60c9620fgw1eu5ltt9uglj20ia0j0tbo.jpg)
4242

43-
### 当前版本(2.6.26)功能特点 ##
43+
### 当前版本(2.6.27)功能特点 ##
4444

4545
- **支持配置(配置项+配置文件)的分布式化管理**
4646
- **配置发布统一化**
@@ -121,7 +121,7 @@ Disconf为应用方提供了三个工具,
121121
<dependency>
122122
<groupId>com.baidu.disconf</groupId>
123123
<artifactId>disconf-client</artifactId>
124-
<version>2.6.26</version>
124+
<version>2.6.27</version>
125125
</dependency>
126126

127127
### disconf-web 使用 ###

disconf-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.baidu.disconf</groupId>
1212
<artifactId>disconf-base</artifactId>
13-
<version>2.6.27-SNAPSHOT</version>
13+
<version>2.6.27</version>
1414
<relativePath>../</relativePath>
1515
</parent>
1616

disconf-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<groupId>com.baidu.disconf</groupId>
1515
<artifactId>disconf-base</artifactId>
1616
<relativePath>../</relativePath>
17-
<version>2.6.27-SNAPSHOT</version>
17+
<version>2.6.27</version>
1818
</parent>
1919

2020
<licenses>

disconf-demos/disconf-spring-boot-demo/disconf-spring-boot-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.baidu.disconf</groupId>
3434
<artifactId>disconf-client</artifactId>
35-
<version>2.6.27-SNAPSHOT</version>
35+
<version>2.6.27</version>
3636
<exclusions>
3737
<exclusion>
3838
<groupId>ch.qos.logback</groupId>

disconf-demos/disconf-standalone-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>com.baidu.disconf</groupId>
1313
<artifactId>disconf-client</artifactId>
14-
<version>2.6.27-SNAPSHOT</version>
14+
<version>2.6.27</version>
1515
</dependency>
1616

1717
<dependency>

disconf-demos/disconf-standalone-dubbo-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>com.baidu.disconf</groupId>
1313
<artifactId>disconf-client</artifactId>
14-
<version>2.6.27-SNAPSHOT</version>
14+
<version>2.6.27</version>
1515
</dependency>
1616

1717
<dependency>

disconf-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.baidu.disconf</groupId>
66
<artifactId>disconf-base</artifactId>
7-
<version>2.6.27-SNAPSHOT</version>
7+
<version>2.6.27</version>
88
</parent>
99
<artifactId>disconf-tool</artifactId>
1010
<version>${disconf-tool.version}</version>

disconf-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.baidu.disconf</groupId>
1414
<artifactId>disconf-base</artifactId>
15-
<version>2.6.27-SNAPSHOT</version>
15+
<version>2.6.27</version>
1616
<relativePath>../</relativePath>
1717
</parent>
1818

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.baidu.disconf</groupId>
77
<artifactId>disconf-base</artifactId>
8-
<version>2.6.27-SNAPSHOT</version>
8+
<version>2.6.27</version>
99
<packaging>pom</packaging>
1010

1111
<modules>
@@ -46,9 +46,9 @@
4646
<project.build.offline.sourceDir>${project.basedir}/src/main/resources</project.build.offline.sourceDir>
4747

4848
<!-- 模块版本号 -->
49-
<disconf-core.version>2.6.27-SNAPSHOT</disconf-core.version>
50-
<disconf-client.version>2.6.27-SNAPSHOT</disconf-client.version>
51-
<disconf-tool.version>2.6.27-SNAPSHOT</disconf-tool.version>
49+
<disconf-core.version>2.6.27</disconf-core.version>
50+
<disconf-client.version>2.6.27</disconf-client.version>
51+
<disconf-tool.version>2.6.27</disconf-tool.version>
5252
</properties>
5353

5454
<dependencyManagement>

0 commit comments

Comments
 (0)