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/grpc-java-contrib/issues), and if it isn't
already tracked, [create a new issue](https://github.com/grpc-java-contrib/issues/new). Fill out the "Bug Report" section
- If you find a bug, please search for it in the [Issues](https://github.com/salesforce/grpc-java-contrib/issues), and if it isn't
already tracked, [create a new issue](https://github.com/salesforce/grpc-java-contrib/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/grpc-java-contrib/issues/new).
[new Issue](https://github.com/salesforce/grpc-java-contrib/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/grpc-java-contrib/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/grpc-java-contrib/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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ A pair of demo applications are in the [`grpc-java-contrib-demo`](https://github

Usage
=====
These libraries are still fairly immature. For now, you will have to clone this repo and build it yourself. Setting
up CI and deploying to Maven Central is still in our future.
Binaries are published to Maven Central under the `com.salesforce.servicelibs` group id.

See each respective module for documentation on its usage.

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

Classes
==============
Expand All @@ -19,4 +19,3 @@ Subpackages
* *context* - Implements an ambient context that is transparently passed from service to service.
* *instancemode* - Adds per-call and per-session service instantiation modes to gRPC.
* *interceptor* - Useful client and server interceptor implementations.
* *session* - Adds client session tracking support to gRPC.
2 changes: 1 addition & 1 deletion contrib/grpc-spring/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/grpc-spring.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/grpc-spring)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-spring/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-spring)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/grpc-spring)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/grpc-spring)

Using GrpcServerHost
====================
Expand Down
6 changes: 3 additions & 3 deletions contrib/grpc-testing-contrib/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/grpc-contrib.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/grpc-contrib)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-contrib/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-contrib)
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/grpc-testing-contrib.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/grpc-testing-contrib)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/grpc-testing-contrib)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/grpc-testing-contrib)

Classes
==============
* *NettyGrpcServerRule* - A jUnit test @Rule like `GrpcServerRule`, but uses the Netty transport instead of the InProc transport.
* *GrpcContext* - A jUnit test @Rule that fails any test that leaks `io.grpc.Context` information. Useful for testing context-sensitive code.
* *GrpcContextRule* - A jUnit test @Rule that fails any test that leaks `io.grpc.Context` information. Useful for testing context-sensitive code.
2 changes: 1 addition & 1 deletion jprotoc/jprotoc/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
What is jprotoc?
================
[![Javadocs](https://javadoc.io/badge/com.salesforce.servicelibs/jprotoc.svg)](https://javadoc.io/doc/com.salesforce.servicelibs/jprotoc)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/jprotoc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/jprotoc)
[![Maven Central](https://img.shields.io/maven-central/v/com.salesforce.servicelibs/jprotoc)](https://central.sonatype.com/artifact/com.salesforce.servicelibs/jprotoc)


jprotoc is a framework for building protoc plugins using Java. As a demo, jprotoc includes a Jdk8 generator, that
Expand Down