Skip to content

Commit

Permalink
dubbo-parent是头文件不包含依赖。替换成dubbo, 同时增加zk连接的依赖。因为curator-framework在dubbo…
Browse files Browse the repository at this point in the history
…-dependencies当中去除掉了zookeeper的包,所以外部使用的时候需要额外配置. (#3516)
  • Loading branch information
awayings authored and beiwei30 committed Mar 7, 2019
1 parent 6a70284 commit 1420698
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,25 @@ There's a [README](https://github.com/apache/incubator-dubbo-samples/tree/master
<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-parent</artifactId>
<artifactId>dubbo</artifactId>
<version>${dubbo.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</dependency>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</dependency>
</dependencies>
```

Expand Down

0 comments on commit 1420698

Please sign in to comment.