Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ one where new project leads (`admins`) will be added to the project based on the
Use GitHub Issues page to submit issues, enhancement requests and discuss ideas.

### Bug Reports and Fixes
- If you find a bug, please search for it in the [Issues](https://github.com/reactive-grpc/issues), and if it isn't
already tracked, [create a new issue](https://github.com/reactive-grpc/issues/new). Fill out the "Bug Report" section
- If you find a bug, please search for it in the [Issues](https://github.com/salesforce/reactive-grpc/issues), and if it isn't
already tracked, [create a new issue](https://github.com/salesforce/reactive-grpc/issues/new). Fill out the "Bug Report" section
of the issue template. Even if an Issue is closed, feel free to comment and add details, it will still be reviewed.
- Issues that have already been identified as a bug (note: able to reproduce) will be labelled `bug`.
- If you'd like to submit a fix for a bug, [send a Pull Request](#creating_a_pull_request) and mention the Issue number.
- If you'd like to submit a fix for a bug, [send a Pull Request](#creating-a-pull-request) and mention the Issue number.
- Include tests that isolate the bug and verifies that it was fixed.

### New Features
- If you'd like to add new functionality to this project, describe the problem you want to solve in a
[new Issue](https://github.com/reactive-grpc/issues/new).
[new Issue](https://github.com/salesforce/reactive-grpc/issues/new).
- Issues that have been identified as a feature request will be labelled `enhancement`.
- If you'd like to implement the new feature, please wait for feedback from the project
maintainers before spending too much time writing the code. In some cases, `enhancement`s may
Expand All @@ -36,8 +36,8 @@ Use GitHub Issues page to submit issues, enhancement requests and discuss ideas.
- If you'd like to improve the tests, you want to make the documentation clearer, you have an
alternative implementation of something that may have advantages over the way its currently
done, or you have any other change, we would be happy to hear about it!
- If its a trivial change, go ahead and [send a Pull Request](#creating_a_pull_request) with the changes you have in mind.
- If not, [open an Issue](https://github.com/reactive-grpc/issues/new) to discuss the idea first.
- If its a trivial change, go ahead and [send a Pull Request](#creating-a-pull-request) with the changes you have in mind.
- If not, [open an Issue](https://github.com/salesforce/reactive-grpc/issues/new) to discuss the idea first.

If you're new to our project and looking for some way to make your first contribution, look for
Issues labelled `good first contribution`.
Expand Down
6 changes: 3 additions & 3 deletions demos/reactive-grpc-chat/reactor-chat-kotlin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ Usage

The server is a regular Spring-Boot 2 app and can be run from maven
```sh
mvn spring-boot:run -pl demos/ReactorChat-Kotlin/ReactorChat-Server-Kt
mvn spring-boot:run -pl demos/reactive-grpc-chat/reactor-chat-kotlin/ReactorChat-Server-Kt
```

## Starting clients

First package the client app
```sh
mvn package -pl demos/ReactorChat-Kotlin/ReactorChat-Client-Kt
mvn package -pl demos/reactive-grpc-chat/reactor-chat-kotlin/ReactorChat-Client-Kt
```
Then run it as a regular jar
```sh
java -jar demos/ReactorChat-Kotlin/ReactorChat-Client-Kt/target/ReactorChat-Client-Kt-*.jar
java -jar demos/reactive-grpc-chat/reactor-chat-kotlin/ReactorChat-Client-Kt/target/ReactorChat-Client-Kt-*.jar
```
You can start as many clients as you want and make them chat between each other.
2 changes: 1 addition & 1 deletion reactor/reactor-grpc-stub/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/reactor-grpc-stub/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/reactor-grpc-stub)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/reactor-grpc-stub)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/reactor-grpc-stub)

Usage
=====
Expand Down
2 changes: 1 addition & 1 deletion reactor/reactor-grpc/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/reactor-grpc-stub.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/reactor-grpc-stub)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/reactor-grpc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/reactor-grpc)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/reactor-grpc)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/reactor-grpc)


Usage
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc-stub/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc-stub/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc-stub)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/rxgrpc-stub)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/rxgrpc-stub)

Usage
=====
Expand Down
2 changes: 1 addition & 1 deletion rx-java/rxgrpc/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/rxgrpc-stub.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/rxgrpc-stub)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/rxgrpc)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/rxgrpc)


Usage
Expand Down
4 changes: 2 additions & 2 deletions rx3-java/rx3grpc-stub/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc-stub/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc-stub)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/rx3grpc-stub)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/rx3grpc-stub)

Usage
=====
Expand All @@ -10,7 +10,7 @@ Usage
<dependencies>
<dependency>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>rxgrpc-stub</artifactId>
<artifactId>rx3grpc-stub</artifactId>
<version>[VERSION]</version>
</dependency>
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions rx3-java/rx3grpc/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/rxgrpc-stub.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/rxgrpc-stub)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/rxgrpc)
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/rx3grpc-stub.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/rx3grpc-stub)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/rx3grpc)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/rx3grpc)


Usage
Expand Down Expand Up @@ -38,9 +38,9 @@ Usage
<protocPlugin>
<id>rxgrpc</id>
<groupId>com.salesforce.servicelibs</groupId>
<artifactId>rxgrpc</artifactId>
<artifactId>rx3grpc</artifactId>
<version>[VERSION]</version>
<mainClass>com.salesforce.rx3grpc.RxGrpcGenerator</mainClass>
<mainClass>com.salesforce.rx3grpc.Rx3GrpcGenerator</mainClass>
</protocPlugin>
</protocPlugins>
</configuration>
Expand Down