You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hu...@apache.org on 2019/01/29 09:18:24 UTC

[incubator-dubbo] branch master updated: [Dubbo-3347] Update package name in README file fix#3347 (#3362)

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

huxing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new fd16a2b  [Dubbo-3347] Update package name in README file  fix#3347 (#3362)
fd16a2b is described below

commit fd16a2b8124c7e9c6618657d5241936ee185e0dd
Author: huazhongming <cr...@gmail.com>
AuthorDate: Tue Jan 29 17:18:15 2019 +0800

    [Dubbo-3347] Update package name in README file  fix#3347 (#3362)
---
 README.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index c14d8e9..efbe080 100644
--- a/README.md
+++ b/README.md
@@ -42,13 +42,13 @@ There's a [README](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samp
 
 ```xml
 <properties>
-    <dubbo.version>2.6.5</dubbo.version>
+    <dubbo.version>2.7.0</dubbo.version>
 </properties>
     
 <dependencyManagement>
     <dependencies>
         <dependency>
-            <groupId>com.alibaba</groupId>
+            <groupId>org.apache.dubbo</groupId>
             <artifactId>dubbo-dependencies-bom</artifactId>
             <version>${dubbo.version}</version>
             <type>pom</type>
@@ -59,8 +59,8 @@ There's a [README](https://github.com/dubbo/dubbo-samples/blob/master/dubbo-samp
 
 <dependencies>
     <dependency>
-        <groupId>com.alibaba</groupId>
-        <artifactId>dubbo</artifactId>
+        <groupId>org.apache.dubbo</groupId>
+        <artifactId>dubbo-parent</artifactId>
         <version>${dubbo.version}</version>
     </dependency>
     <dependency>
@@ -103,9 +103,9 @@ public class GreetingServiceImpl implements GreetingService {
 ```java
 package org.apache.dubbo.demo.provider;
 
-import com.alibaba.dubbo.config.ApplicationConfig;
-import com.alibaba.dubbo.config.RegistryConfig;
-import com.alibaba.dubbo.config.ServiceConfig;
+import org.apache.dubbo.config.ApplicationConfig;
+import org.apache.dubbo.config.RegistryConfig;
+import org.apache.dubbo.config.ServiceConfig;
 import org.apache.dubbo.samples.api.GreetingService;
 
 import java.io.IOException;
@@ -138,9 +138,9 @@ public class Application {
 ```java
 package org.apache.dubbo.demo.consumer;
 
-import com.alibaba.dubbo.config.ApplicationConfig;
-import com.alibaba.dubbo.config.ReferenceConfig;
-import com.alibaba.dubbo.config.RegistryConfig;
+import org.apache.dubbo.config.ApplicationConfig;
+import org.apache.dubbo.config.ReferenceConfig;
+import org.apache.dubbo.config.RegistryConfig;
 import org.apache.dubbo.samples.api.GreetingService;
 
 public class Application {