This is an automated email from the ASF dual-hosted git repository.

mercyblitz pushed a commit to branch 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-dubbo-spring-boot-project.git

commit d94839864efaa7e166cad4efdb9617d88be14a51
Author: mercyblitz <mercybl...@gmail.com>
AuthorDate: Tue May 8 22:55:48 2018 +0800

    Update Document
---
 README.md    |  7 +++---
 README_CN.md | 71 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 40 insertions(+), 38 deletions(-)

diff --git a/README.md b/README.md
index 71b099f..00fac97 100644
--- a/README.md
+++ b/README.md
@@ -43,7 +43,7 @@ If your project failed to resolve the dependency, try to add 
the following repos
 
 For now, `dubbo-spring-boot-starter` will separate two versions for Spring 
Boot 2.x and 1.x once release : 
 
-* `0.2.x` is a main stream release version for Spring Boot 2.x
+* [`0.2.x`](https://github.com/apache/incubator-dubbo-spring-boot-project) is 
a main stream release version for Spring Boot 2.x
 
 * 
[`0.1.x`](https://github.com/apache/incubator-dubbo-spring-boot-project/tree/0.1.x)
 is a legacy version for maintaining Spring Boot 1.x
 
@@ -52,8 +52,9 @@ For now, `dubbo-spring-boot-starter` will separate two 
versions for Spring Boot
 
 If you'd like to attempt to experience latest features, you also can build 
from source as follow:
 
-1. build source from [dubbo 
2.6.2-SNAPSHOT](https://github.com/apache/incubator-dubbo/tree/2.6.2-release)
-2. build source from current project.
+1. Maven install [dubbo 
2.6.2-SNAPSHOT](https://github.com/apache/incubator-dubbo/tree/2.6.2-release) 
in your local repository 
+2. Maven install current project in your local repository.
+> Maven install = `mvn install`
 
 
 ### Dependencies
diff --git a/README_CN.md b/README_CN.md
index 892d225..266e480 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -10,60 +10,61 @@
 
 > Dubbo *|ˈdʌbəʊ|* is a high-performance, java based 
 > [RPC](https://en.wikipedia.org/wiki/Remote_procedure_call) framework 
 > open-sourced by Alibaba. As in many RPC systems, dubbo is based around the 
 > idea of defining a service, specifying the methods that can be called 
 > remotely with their parameters and return types. On the server side, the 
 > server implements this interface and runs a dubbo server to handle client 
 > calls. On the client side, the client has a stub that provides the same 
 > method [...]
 
+## [English README](README_CN.md)
 
 
-## 版本
+## 已发行版本
 
-从现在开始, `dubbo-spring-boot-project` 将在每个发布中发行两个版本 :
-
-* `0.2.x` 是支持 Spring Boot 2.x 的主要版本(推荐,长期维护)
-
-* 
[`0.1.x`](https://github.com/apache/incubator-dubbo-spring-boot-project/tree/0.1.x)
 是支持 Spring Boot 1.x 的维护版本(兼容,短期维护)
-
-
-## Maven 整合
-
-### 稳定版本
-
-如果你希望使用稳定的 `dubbo-spring-boot-project`,您可以自行将以下 Maven 依赖添加到您的工程 pom.xml:
+您可以为您的工程引入最新 `dubbo-spring-boot-starter` 的发布,增加以下依赖到工程的 `pom.xml` 文件中:
+```xml
+<dependency>
+    <groupId>com.alibaba.boot</groupId>
+    <artifactId>dubbo-spring-boot-starter</artifactId>
+    <version>0.1.0</version>
+</dependency>
+```
 
+如果您的工程遇到了依赖问题, 请尝试添加如下 Maven 参考到工程的 `pom.xml` 文件中:
 ```xml
-<dependencies>
+<repositories>
+    <repository>
+        <id>sonatype-nexus-snapshots</id>
+        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+        <releases>
+            <enabled>false</enabled>
+        </releases>
+        <snapshots>
+            <enabled>true</enabled>
+        </snapshots>
+    </repository>
+</repositories>
+```
 
-    ...
 
-    <!-- 功能特性 -->
-    <dependency>
-        <groupId>com.alibaba.boot</groupId>
-        <artifactId>dubbo-spring-boot-starter</artifactId>
-        <version>0.2.0-SNAPSHOT</version>
-    </dependency>
+## 开发版本
 
-    <!-- Production-Ready 特性 -->
-    <dependency>
-        <groupId>com.alibaba.boot</groupId>
-        <artifactId>dubbo-spring-boot-actuator</artifactId>
-        <version>0.2.0-SNAPSHOT</version>
-    </dependency>
+从现在开始, `dubbo-spring-boot-project` 将在每个发布中发行两个版本 :
 
-     ...
+* [`0.2.x`](https://github.com/apache/incubator-dubbo-spring-boot-project) 是支持 
Spring Boot 2.x 的主要版本(推荐,长期维护)
 
-</dependencies>
-```
+* 
[`0.1.x`](https://github.com/apache/incubator-dubbo-spring-boot-project/tree/0.1.x)
 是支持 Spring Boot 1.x 的维护版本(兼容,短期维护)
 
 
-### 开发版本
 
-如果你需要尝试最新 `dubbo-spring-boot-project` 的特性,您可将当前工程手动 Maven install 到本地 Maven 仓库。
+### 源代码构建
 
+如果你需要尝试最新 `dubbo-spring-boot-project` 的特性,您可将当前工程手动 Maven install 到本地 Maven 仓库:
 
+1. Maven install [dubbo 
2.6.2-SNAPSHOT](https://github.com/apache/incubator-dubbo/tree/2.6.2-release) 
+2. Maven install 当前工程
+> Maven install = `mvn install`
 
-## 依赖关系
+### 依赖关系
 
 | 版本 | Java  | Spring Boot       | Dubbo      |
 | -------- | ----- | ----------------- | ---------- |
-| `0.2.0-SNAPSHOT`  | 1.8 + | `2.0.x` | `2.6.2` + |
-| `0.1.1-SNAPSHOT`  | 1.7 + | `1.5.x` | `2.6.2` + |
+| `0.2.0`  | 1.8+ | `2.0.x` | `2.6.2`+ |
+| `0.1.1`  | 1.7+ | `1.5.x` | `2.6.2`+ |
 
 
 

-- 
To stop receiving notification emails like this one, please contact
mercybl...@apache.org.

Reply via email to