Skip to content

Commit

Permalink
2.6.30
Browse files Browse the repository at this point in the history
  • Loading branch information
knightliao committed Dec 1, 2015
1 parent 1076c49 commit 9af37f9
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
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.30-SNAPSHOT</version>
<version>2.6.30</version>
</parent>

<licenses>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public DisconfCoreMgr getDisconfCoreMgr(Registry registry) throws Exception {
fileSet.add("atomserverl.properties");
fileSet.add("atomserverm_slave.properties");
DisconfCenterHostFilesStore.getInstance().addJustHostFileSet(fileSet);

DisconfMgr.getInstance().start(StringUtil.parseStringToStringList(ScanPackTestCase.SCAN_PACK_NAME,
DisconfMgrBean.SCAN_SPLIT_TOKEN));

Expand Down
12 changes: 7 additions & 5 deletions disconf-client/src/test/resources/applicationContext.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
">

<context:component-scan base-package="com.baidu" />
<context:component-scan base-package="com.baidu"/>

<aop:aspectj-autoproxy proxy-target-class="true" />
<aop:aspectj-autoproxy proxy-target-class="true"/>

<bean class="com.baidu.disconf.client.store.aspect.DisconfAspectJ"/>

</beans>
2 changes: 1 addition & 1 deletion disconf-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.baidu.disconf</groupId>
<artifactId>disconf-base</artifactId>
<version>2.6.30-SNAPSHOT</version>
<version>2.6.30</version>
</parent>

<licenses>
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.30-SNAPSHOT</version>
<version>2.6.30</version>
</parent>

<dependencies>
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.30-SNAPSHOT</version>
<version>2.6.30</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -25,9 +25,9 @@

<properties>
<!-- 模块版本号 -->
<disconf-core.version>2.6.30-SNAPSHOT</disconf-core.version>
<disconf-client.version>2.6.30-SNAPSHOT</disconf-client.version>
<disconf-client-spring.version>2.6.30-SNAPSHOT</disconf-client-spring.version>
<disconf-core.version>2.6.30</disconf-core.version>
<disconf-client.version>2.6.30</disconf-client.version>
<disconf-client-spring.version>2.6.30</disconf-client-spring.version>

<!-- Spring項目配置 -->
<encoding>UTF-8</encoding>
Expand Down

0 comments on commit 9af37f9

Please sign in to comment.