Skip to content
This repository has been archived by the owner on Nov 24, 2018. It is now read-only.

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hengyunabc committed Aug 18, 2015
1 parent 2ea96b1 commit f1b0026
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 21 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

全局配置中心,存储应用的配置项,解决配置混乱分散的问题。名字来源于淘宝的开源项目[diamond](http://code.taobao.org/p/diamond/src/ ""),前面加上一个字母X以示区别。

[wiki](https://github.com/hengyunabc/xdiamond/wiki "")

[设计思路](https://github.com/hengyunabc/xdiamond/wiki/%E8%AE%BE%E8%AE%A1%E6%80%9D%E8%B7%AF "")

## 在线演示
地址:[xdiamond.coding.io](http://xdiamond.coding.io/ ""),登陆**选择standard**,用户名密码:admin/admin

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-rootpom</artifactId>
<packaging>pom</packaging>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
15 changes: 7 additions & 8 deletions xdiamond-client-example/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-client-example</artifactId>
Expand All @@ -17,15 +16,15 @@

<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-client</artifactId>
<version>1.0.0</version>
</dependency>

<dependency>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-client</artifactId>
<version>0.0.1-SNAPSHOT</version>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>

<dependency>
Expand Down
6 changes: 2 additions & 4 deletions xdiamond-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@
<parent>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-rootpom</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-client</artifactId>
<version>0.0.1-SNAPSHOT</version>

<properties>
<logback.version>1.0.13</logback.version>
Expand All @@ -23,7 +21,7 @@
<dependency>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>

<dependency>
Expand Down
4 changes: 1 addition & 3 deletions xdiamond-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@
<parent>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-rootpom</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-common</artifactId>
<version>0.0.1-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
8 changes: 3 additions & 5 deletions xdiamond-server/pom.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-rootpom</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>xdiamond-server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>

<properties>
Expand All @@ -26,7 +24,7 @@
<dependency>
<groupId>io.github.xdiamond</groupId>
<artifactId>xdiamond-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit f1b0026

Please sign in to comment.