Skip to content

Commit

Permalink
re
Browse files Browse the repository at this point in the history
  • Loading branch information
knightliao committed Oct 26, 2015
2 parents a812bc7 + a0cc794 commit 4843cea
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Distributed Configuration Management Platform(分布式配置管理平台)

disconf.git branches and Maven version:

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

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

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

### 当前版本(2.6.26)功能特点 ##
### 当前版本(2.6.27)功能特点 ##

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

### disconf-web 使用 ###
Expand Down
2 changes: 1 addition & 1 deletion disconf-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-base</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
<relativePath>../</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void setScanPackage(String scanPackage) {

@Override
public int getOrder() {
return Ordered.HIGHEST_PRECEDENCE;
return Ordered.HIGHEST_PRECEDENCE + 1;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion disconf-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-base</artifactId>
<relativePath>../</relativePath>
<version>2.6.26</version>
<version>2.6.27</version>
</parent>

<licenses>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependency>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-client</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
Expand Down
2 changes: 1 addition & 1 deletion disconf-demos/disconf-standalone-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-client</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion disconf-demos/disconf-standalone-dubbo-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-client</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion disconf-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-base</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
</parent>
<artifactId>disconf-tool</artifactId>
<version>${disconf-tool.version}</version>
Expand Down
2 changes: 1 addition & 1 deletion disconf-web/html/assets/js/newconfigfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ $("#uploadChoice").on(
"envId": envId,
"version": version,
"fileContent": fileContent,
"fileName": fileName,
"fileName": fileName
}
}).done(function (data) {
$("#error").removeClass("hide");
Expand Down
2 changes: 1 addition & 1 deletion disconf-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-base</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
<relativePath>../</relativePath>
</parent>

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-base</artifactId>
<version>2.6.26</version>
<version>2.6.27</version>
<packaging>pom</packaging>

<modules>
Expand Down Expand Up @@ -46,9 +46,9 @@
<project.build.offline.sourceDir>${project.basedir}/src/main/resources</project.build.offline.sourceDir>

<!-- 模块版本号 -->
<disconf-core.version>2.6.26</disconf-core.version>
<disconf-client.version>2.6.26</disconf-client.version>
<disconf-tool.version>2.6.26</disconf-tool.version>
<disconf-core.version>2.6.27</disconf-core.version>
<disconf-client.version>2.6.27</disconf-client.version>
<disconf-tool.version>2.6.27</disconf-tool.version>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit 4843cea

Please sign in to comment.