forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:apache/incubator-dubbo
- Loading branch information
Showing
379 changed files
with
17,922 additions
and
3,839 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
[![Build Status](https://travis-ci.org/apache/incubator-dubbo.svg?branch=master)](https://travis-ci.org/apache/incubator-dubbo) | ||
[![codecov](https://codecov.io/gh/apache/incubator-dubbo/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-dubbo) | ||
![maven](https://img.shields.io/maven-central/v/com.alibaba/dubbo.svg) | ||
![maven](https://img.shields.io/maven-central/v/org.apache.dubbo/dubbo.svg) | ||
![license](https://img.shields.io/github/license/alibaba/dubbo.svg) | ||
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/apache/incubator-dubbo.svg)](http://isitmaintained.com/project/apache/incubator-dubbo "Average time to resolve an issue") | ||
[![Percentage of issues still open](http://isitmaintained.com/badge/open/apache/incubator-dubbo.svg)](http://isitmaintained.com/project/apache/incubator-dubbo "Percentage of issues still open") | ||
|
@@ -42,30 +42,19 @@ There's a [README](https://github.com/apache/incubator-dubbo-samples/tree/master | |
|
||
```xml | ||
<properties> | ||
<dubbo.version>2.7.0</dubbo.version> | ||
<dubbo.version>2.7.1</dubbo.version> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.dubbo</groupId> | ||
<artifactId>dubbo-dependencies-bom</artifactId> | ||
<version>${dubbo.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<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> | ||
<groupId>org.apache.dubbo</groupId> | ||
<artifactId>dubbo-dependencies-zookeeper</artifactId> | ||
<version>${dubbo.version}</version> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
@@ -90,6 +79,7 @@ package org.apache.dubbo.samples.provider; | |
import org.apache.dubbo.samples.api.GreetingService; | ||
|
||
public class GreetingServiceImpl implements GreetingService { | ||
@Override | ||
public String sayHello(String name) { | ||
return "Hello " + name; | ||
} | ||
|
@@ -173,6 +163,14 @@ The consumer will print out `Hello world` on the screen. | |
* [Dubbo developer guide](http://dubbo.apache.org/en-us/docs/dev/build.html) - How to involve in Dubbo development. | ||
* [Dubbo admin manual](http://dubbo.apache.org/en-us/docs/admin/install/provider-demo.html) - How to admin and manage Dubbo services. | ||
|
||
## Building | ||
|
||
If you want to try out the cutting-edge features, you can built with the following commands. (Java 1.8 is required to build the master branch) | ||
|
||
``` | ||
mvn clean install | ||
``` | ||
|
||
## Contact | ||
|
||
* Mailing list: | ||
|
@@ -197,7 +195,7 @@ See [CONTRIBUTING](https://github.com/apache/incubator-dubbo/blob/master/CONTRI | |
* blog post | ||
* translation on documentation | ||
* use cases about how Dubbo is being used in enterprise system. | ||
* Improve the [dubbo-ops/dubbo-monitor](https://github.com/apache/incubator-dubbo-ops). | ||
* Improve the [dubbo-admin/dubbo-monitor](https://github.com/apache/incubator-dubbo-admin). | ||
* Contribute to the projects listed in [ecosystem](https://github.com/dubbo). | ||
* Any form of contribution that is not mentioned above. | ||
* If you would like to contribute, please send an email to [email protected] to let us know! | ||
|
@@ -208,21 +206,22 @@ Please follow the [template](https://github.com/apache/incubator-dubbo/issues/ne | |
|
||
## Reporting a security vulnerability | ||
|
||
Please report security vulnerability to [us]([email protected]) privately. | ||
Please report security vulnerability to [us](mailto:[email protected]) privately. | ||
|
||
## Dubbo ecosystem | ||
|
||
* [Dubbo Ecosystem Entry](https://github.com/dubbo) - A GitHub group `dubbo` to gather all Dubbo relevant projects not appropriate in [apache](https://github.com/apache) group yet | ||
* [Dubbo Website](https://github.com/apache/incubator-dubbo-website) - Apache Dubbo (incubating) official website | ||
* [Dubbo Samples](https://github.com/apache/incubator-dubbo-samples) - samples for Apache Dubbo (incubating) | ||
* [Dubbo Spring Boot](https://github.com/apache/incubator-dubbo-spring-boot-project) - Spring Boot Project for Dubbo | ||
* [Dubbo OPS](https://github.com/apache/incubator-dubbo-ops) - The reference implementation for Dubbo admin | ||
* [Dubbo Admin](https://github.com/apache/incubator-dubbo-admin) - The reference implementation for Dubbo admin | ||
|
||
#### Language | ||
|
||
* [Node.js](https://github.com/dubbo/dubbo2.js) | ||
* [Python](https://github.com/dubbo/dubbo-client-py) | ||
* [PHP](https://github.com/dubbo/dubbo-php-framework) | ||
* [Go](https://github.com/dubbo/dubbo-go) | ||
|
||
## License | ||
|
||
|
Oops, something went wrong.