Skip to content

Commit a8ca64c

Browse files
authored
Remove incubator (apache#4161)
1 parent c14605e commit a8ca64c

File tree

20 files changed

+178
-178
lines changed

20 files changed

+178
-178
lines changed

.github/ISSUE_TEMPLATE/dubbo-issue-report-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ about: If you would like to report a issue to Dubbo, please use this template.
44

55
---
66

7-
- [ ] I have searched the [issues](https://github.com/apache/incubator-dubbo/issues) of this repository and believe that this is not a duplicate.
8-
- [ ] I have checked the [FAQ](https://github.com/apache/incubator-dubbo/blob/master/FAQ.md) of this repository and believe that this is not a duplicate.
7+
- [ ] I have searched the [issues](https://github.com/apache/dubbo/issues) of this repository and believe that this is not a duplicate.
8+
- [ ] I have checked the [FAQ](https://github.com/apache/dubbo/blob/master/FAQ.md) of this repository and believe that this is not a duplicate.
99

1010
### Environment
1111

CHANGES.md

Lines changed: 100 additions & 100 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Before we accept a non-trivial patch or pull request we will need you to sign th
99

1010
#### Mailing list
1111

12-
The mailing list is the recommended way for discussing almost anything that related to Dubbo. Please refer to this [guide](https://github.com/apache/incubator-dubbo/wiki/Mailing-list-subscription-guide) for detailed documentation on how to subscribe.
12+
The mailing list is the recommended way for discussing almost anything that related to Dubbo. Please refer to this [guide](https://github.com/apache/dubbo/wiki/Mailing-list-subscription-guide) for detailed documentation on how to subscribe.
1313

14-
- [dev@dubbo.incubator.apache.org](mailto:dev-subscribe@dubbo.incubator.apache.org): the develop mailing list, you can ask question here if you have encountered any problem when using or developing Dubbo.
15-
- [commits@dubbo.incubator.apache.org](mailto:commits-subscribe@dubbo.incubator.apache.org): all the commits will be sent to this mailing list. You can subscribe to it if you are interested in Dubbo's development.
16-
- [notifications@dubbo.incubator.apache.org](mailto:notifications-subscribe@dubbo.incubator.apache.org): all the Github [issue](https://github.com/apache/incubator-dubbo/issues) updates and [pull request](https://github.com/apache/incubator-dubbo/pulls) updates will be sent to this mailing list.
14+
- [[email protected]](mailto:[email protected]): the develop mailing list, you can ask question here if you have encountered any problem when using or developing Dubbo.
15+
- [[email protected]](mailto:[email protected]): all the commits will be sent to this mailing list. You can subscribe to it if you are interested in Dubbo's development.
16+
- [[email protected]](mailto:[email protected]): all the Github [issue](https://github.com/apache/dubbo/issues) updates and [pull request](https://github.com/apache/dubbo/pulls) updates will be sent to this mailing list.
1717

1818
### Reporting issue
1919

20-
Please follow the [template](https://github.com/apache/incubator-dubbo/issues/new?template=dubbo-issue-report-template.md) for reporting any issues.
20+
Please follow the [template](https://github.com/apache/dubbo/issues/new?template=dubbo-issue-report-template.md) for reporting any issues.
2121

2222
### Code Conventions
2323
Our code style is almost in line with the standard java conventions (Popular IDE's default setting satisfy this), with the following additional restricts:
@@ -46,23 +46,23 @@ This is a rough outline of what a contributor's workflow looks like:
4646
* Make commits of logical units.
4747
* Make sure commit messages are in the proper format (see below).
4848
* Push changes in a topic branch to your forked repository.
49-
* Follow the checklist in the [pull request template](https://github.com/apache/incubator-dubbo/blob/master/PULL_REQUEST_TEMPLATE.md)
49+
* Follow the checklist in the [pull request template](https://github.com/apache/dubbo/blob/master/PULL_REQUEST_TEMPLATE.md)
5050
* Before you sending out the pull request, please sync your forked repository with remote repository, this will make your pull request simple and clear. See guide below:
5151
```
52-
git remote add upstream [email protected]:apache/incubator-dubbo.git
52+
git remote add upstream [email protected]:apache/dubbo.git
5353
git fetch upstream
5454
git rebase upstream/master
5555
git checkout -b your_awesome_patch
5656
... add some work
5757
git push origin your_awesome_patch
5858
```
59-
* Submit a pull request to apache/incubator-dubbo and wait for the reply.
59+
* Submit a pull request to apache/dubbo and wait for the reply.
6060

6161
Thanks for contributing!
6262

6363
### Code style
6464

65-
We provide a template file [dubbo_codestyle_for_idea.xml](https://github.com/apache/incubator-dubbo/tree/master/codestyle/dubbo_codestyle_for_idea.xml) for IntelliJ idea, you can import it to you IDE.
65+
We provide a template file [dubbo_codestyle_for_idea.xml](https://github.com/apache/dubbo/tree/master/codestyle/dubbo_codestyle_for_idea.xml) for IntelliJ idea, you can import it to you IDE.
6666
If you use Eclipse you can config manually by referencing the same file.
6767

6868
**NOTICE**

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Apache Dubbo (incubating)
1+
Apache Dubbo
22
Copyright 2018-2019 The Apache Software Foundation
33

44
This product includes software developed at

PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ XXXXX
1212

1313
Follow this checklist to help us incorporate your contribution quickly and easily:
1414

15-
- [x] Make sure there is a [GITHUB_issue](https://github.com/apache/incubator-dubbo/issues) field for the change (usually before you start working on it). Trivial changes like typos do not require a GITHUB issue. Your pull request should address just this issue, without pulling in other changes - one PR resolves one issue.
15+
- [x] Make sure there is a [GITHUB_issue](https://github.com/apache/dubbo/issues) field for the change (usually before you start working on it). Trivial changes like typos do not require a GITHUB issue. Your pull request should address just this issue, without pulling in other changes - one PR resolves one issue.
1616
- [ ] Format the pull request title like `[Dubbo-XXX] Fix UnknownException when host config not exist #XXX`. Each commit in the pull request should have a meaningful subject line and body.
1717
- [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
18-
- [ ] Write necessary unit-test to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add sample in [dubbo samples](https://github.com/apache/incubator-dubbo-samples) project.
18+
- [ ] Write necessary unit-test to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add sample in [dubbo samples](https://github.com/apache/dubbo-samples) project.
1919
- [ ] Run `mvn clean install -DskipTests=false` & `mvn clean test-compile failsafe:integration-test` to make sure unit-test and integration-test pass.
20-
- [ ] If this contribution is large, please follow the [Software Donation Guide](https://github.com/apache/incubator-dubbo/wiki/Software-donation-guide).
20+
- [ ] If this contribution is large, please follow the [Software Donation Guide](https://github.com/apache/dubbo/wiki/Software-donation-guide).

README.md

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Apache Dubbo Project
22

3-
[![Build Status](https://travis-ci.org/apache/incubator-dubbo.svg?branch=master)](https://travis-ci.org/apache/incubator-dubbo)
4-
[![codecov](https://codecov.io/gh/apache/incubator-dubbo/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-dubbo)
3+
[![Build Status](https://travis-ci.org/apache/dubbo.svg?branch=master)](https://travis-ci.org/apache/dubbo)
4+
[![codecov](https://codecov.io/gh/apache/dubbo/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/dubbo)
55
![maven](https://img.shields.io/maven-central/v/org.apache.dubbo/dubbo.svg)
66
![license](https://img.shields.io/github/license/alibaba/dubbo.svg)
7-
[![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")
8-
[![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")
9-
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Apache%20Dubbo%20(incubating)%20is%20a%20high-performance%2C%20java%20based%2C%20open%20source%20RPC%20framework.&url=http://dubbo.incubator.apache.org/&via=ApacheDubbo&hashtags=rpc,java,dubbo,micro-service)
7+
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/apache/dubbo.svg)](http://isitmaintained.com/project/apache/dubbo "Average time to resolve an issue")
8+
[![Percentage of issues still open](http://isitmaintained.com/badge/open/apache/dubbo.svg)](http://isitmaintained.com/project/apache/dubbo "Percentage of issues still open")
9+
[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Apache%20Dubbo%20is%20a%20high-performance%2C%20java%20based%2C%20open%20source%20RPC%20framework.&url=http://dubbo.apache.org/&via=ApacheDubbo&hashtags=rpc,java,dubbo,micro-service)
1010
[![](https://img.shields.io/twitter/follow/ApacheDubbo.svg?label=Follow&style=social&logoWidth=0)](https://twitter.com/intent/follow?screen_name=ApacheDubbo)
1111
[![Gitter](https://badges.gitter.im/alibaba/dubbo.svg)](https://gitter.im/alibaba/dubbo?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
1212

13-
Apache Dubbo is a high-performance, Java based open source RPC framework. Please visit [official site](http://dubbo.apache.org) for quick start and documentations, as well as [Wiki](https://github.com/apache/incubator-dubbo/wiki) for news, FAQ, and release notes.
13+
Apache Dubbo is a high-performance, Java based open source RPC framework. Please visit [official site](http://dubbo.apache.org) for quick start and documentations, as well as [Wiki](https://github.com/apache/dubbo/wiki) for news, FAQ, and release notes.
1414

15-
We are now collecting dubbo user info in order to help us to improve Dubbo better, pls. kindly help us by providing yours on [issue#1012: Wanted: who's using dubbo](https://github.com/apache/incubator-dubbo/issues/1012), thanks :)
15+
We are now collecting dubbo user info in order to help us to improve Dubbo better, pls. kindly help us by providing yours on [issue#1012: Wanted: who's using dubbo](https://github.com/apache/dubbo/issues/1012), thanks :)
1616

1717
## Architecture
1818

@@ -29,14 +29,14 @@ We are now collecting dubbo user info in order to help us to improve Dubbo bette
2929

3030
## Getting started
3131

32-
The following code snippet comes from [Dubbo Samples](https://github.com/apache/incubator-dubbo-samples/tree/master/dubbo-samples-api). You may clone the sample project and step into `dubbo-samples-api` sub directory before read on.
32+
The following code snippet comes from [Dubbo Samples](https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-api). You may clone the sample project and step into `dubbo-samples-api` sub directory before read on.
3333

3434
```bash
35-
# git clone https://github.com/apache/incubator-dubbo-samples.git
36-
# cd incubator-dubbo-samples/dubbo-samples-api
35+
# git clone https://github.com/apache/dubbo-samples.git
36+
# cd dubbo-samples/dubbo-samples-api
3737
```
3838

39-
There's a [README](https://github.com/apache/incubator-dubbo-samples/tree/master/dubbo-samples-api/README.md) file under `dubbo-samples-api` directory. Read it and try this sample out by following the instructions.
39+
There's a [README](https://github.com/apache/dubbo-samples/tree/master/dubbo-samples-api/README.md) file under `dubbo-samples-api` directory. Read it and try this sample out by following the instructions.
4040

4141
### Maven dependency
4242

@@ -70,7 +70,7 @@ public interface GreetingService {
7070
}
7171
```
7272

73-
*See [api/GreetingService.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java) on GitHub.*
73+
*See [api/GreetingService.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/api/GreetingsService.java) on GitHub.*
7474

7575
### Implement service interface for the provider
7676

@@ -87,7 +87,7 @@ public class GreetingServiceImpl implements GreetingService {
8787
}
8888
```
8989

90-
*See [provider/GreetingServiceImpl.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/server/GreetingsServiceImpl.java) on GitHub.*
90+
*See [provider/GreetingServiceImpl.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/server/GreetingsServiceImpl.java) on GitHub.*
9191

9292
### Start service provider
9393

@@ -115,7 +115,7 @@ public class Application {
115115
}
116116
```
117117

118-
*See [provider/Application.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/server/Application.java) on GitHub.*
118+
*See [provider/Application.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/server/Application.java) on GitHub.*
119119

120120
### Build and run the provider
121121

@@ -155,7 +155,7 @@ public class Application {
155155

156156
The consumer will print out `Hello world` on the screen.
157157

158-
*See [consumer/Application.java](https://github.com/apache/incubator-dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/client/Application.java) on GitHub.*
158+
*See [consumer/Application.java](https://github.com/apache/dubbo-samples/blob/master/dubbo-samples-api/src/main/java/org/apache/dubbo/samples/client/Application.java) on GitHub.*
159159

160160
### Next steps
161161

@@ -175,35 +175,35 @@ If you want to try out the cutting-edge features, you can built with the followi
175175
## Contact
176176

177177
* Mailing list:
178-
* dev list: for dev/user discussion. [subscribe](mailto:[email protected]), [unsubscribe](mailto:[email protected]), [archive](https://lists.apache.org/[email protected]), [guide](https://github.com/apache/incubator-dubbo/wiki/Mailing-list-subscription-guide)
178+
* dev list: for dev/user discussion. [subscribe](mailto:[email protected]), [unsubscribe](mailto:[email protected]), [archive](https://lists.apache.org/[email protected]), [guide](https://github.com/apache/dubbo/wiki/Mailing-list-subscription-guide)
179179

180-
* Bugs: [Issues](https://github.com/apache/incubator-dubbo/issues/new?template=dubbo-issue-report-template.md)
180+
* Bugs: [Issues](https://github.com/apache/dubbo/issues/new?template=dubbo-issue-report-template.md)
181181
* Gitter: [Gitter channel](https://gitter.im/alibaba/dubbo)
182182
* Twitter: [@ApacheDubbo](https://twitter.com/ApacheDubbo)
183183

184184
## Contributing
185185

186-
See [CONTRIBUTING](https://github.com/apache/incubator-dubbo/blob/master/CONTRIBUTING.md) for details on submitting patches and the contribution workflow.
186+
See [CONTRIBUTING](https://github.com/apache/dubbo/blob/master/CONTRIBUTING.md) for details on submitting patches and the contribution workflow.
187187

188188
### How can I contribute?
189189

190-
* Take a look at issues with tag called [`Good first issue`](https://github.com/apache/incubator-dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) or [`Help wanted`](https://github.com/apache/incubator-dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).
191-
* Join the discussion on mailing list, subscription [guide](https://github.com/apache/incubator-dubbo/wiki/Mailing-list-subscription-guide).
192-
* Answer questions on [issues](https://github.com/apache/incubator-dubbo/issues).
193-
* Fix bugs reported on [issues](https://github.com/apache/incubator-dubbo/issues), and send us pull request.
194-
* Review the existing [pull request](https://github.com/apache/incubator-dubbo/pulls).
195-
* Improve the [website](https://github.com/apache/incubator-dubbo-website), typically we need
190+
* Take a look at issues with tag called [`Good first issue`](https://github.com/apache/dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) or [`Help wanted`](https://github.com/apache/dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).
191+
* Join the discussion on mailing list, subscription [guide](https://github.com/apache/dubbo/wiki/Mailing-list-subscription-guide).
192+
* Answer questions on [issues](https://github.com/apache/dubbo/issues).
193+
* Fix bugs reported on [issues](https://github.com/apache/dubbo/issues), and send us pull request.
194+
* Review the existing [pull request](https://github.com/apache/dubbo/pulls).
195+
* Improve the [website](https://github.com/apache/dubbo-website), typically we need
196196
* blog post
197197
* translation on documentation
198198
* use cases about how Dubbo is being used in enterprise system.
199-
* Improve the [dubbo-admin/dubbo-monitor](https://github.com/apache/incubator-dubbo-admin).
199+
* Improve the [dubbo-admin/dubbo-monitor](https://github.com/apache/dubbo-admin).
200200
* Contribute to the projects listed in [ecosystem](https://github.com/dubbo).
201201
* Any form of contribution that is not mentioned above.
202202
* If you would like to contribute, please send an email to [email protected] to let us know!
203203

204204
## Reporting bugs
205205

206-
Please follow the [template](https://github.com/apache/incubator-dubbo/issues/new?template=dubbo-issue-report-template.md) for reporting any issues.
206+
Please follow the [template](https://github.com/apache/dubbo/issues/new?template=dubbo-issue-report-template.md) for reporting any issues.
207207

208208
## Reporting a security vulnerability
209209

@@ -212,19 +212,19 @@ Please report security vulnerability to [us](mailto:[email protected]) p
212212
## Dubbo ecosystem
213213

214214
* [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
215-
* [Dubbo Website](https://github.com/apache/incubator-dubbo-website) - Apache Dubbo official website
216-
* [Dubbo Samples](https://github.com/apache/incubator-dubbo-samples) - samples for Apache Dubbo
217-
* [Dubbo Spring Boot](https://github.com/apache/incubator-dubbo-spring-boot-project) - Spring Boot Project for Dubbo
218-
* [Dubbo Admin](https://github.com/apache/incubator-dubbo-admin) - The reference implementation for Dubbo admin
215+
* [Dubbo Website](https://github.com/apache/dubbo-website) - Apache Dubbo official website
216+
* [Dubbo Samples](https://github.com/apache/dubbo-samples) - samples for Apache Dubbo
217+
* [Dubbo Spring Boot](https://github.com/apache/dubbo-spring-boot-project) - Spring Boot Project for Dubbo
218+
* [Dubbo Admin](https://github.com/apache/dubbo-admin) - The reference implementation for Dubbo admin
219219

220220
#### Language
221221

222-
* [Node.js](https://github.com/dubbo/dubbo2.js)
223-
* [Python](https://github.com/dubbo/dubbo-client-py)
224-
* [PHP](https://github.com/dubbo/dubbo-php-framework)
222+
* [Node.js](https://github.com/apache/dubbo-js)
223+
* [Python](https://github.com/apache/dubbo-client-py)
224+
* [PHP](https://github.com/apache/dubbo-php-framework)
225225
* [Go](https://github.com/dubbo/dubbo-go)
226-
* [Erlang](https://github.com/apache/incubator-dubbo-erlang)
226+
* [Erlang](https://github.com/apache/dubbo-erlang)
227227

228228
## License
229229

230-
Apache Dubbo is under the Apache 2.0 license. See the [LICENSE](https://github.com/apache/incubator-dubbo/blob/master/LICENSE) file for details.
230+
Apache Dubbo is under the Apache 2.0 license. See the [LICENSE](https://github.com/apache/dubbo/blob/master/LICENSE) file for details.

0 commit comments

Comments
 (0)