aboutsummaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2018-08-02 16:00:12 -0700
committerEric Anderson <ejona@google.com>2018-08-02 16:58:59 -0700
commitb64cde1488a69559386a56a4a809d2e6046c4c18 (patch)
tree327228f11fc57a1e25d3e802d79913ef7be585e3 /documentation
parent478f006d3eaa0e1832aef4b85ff8e96a4bc12841 (diff)
downloadgrpc-grpc-java-b64cde1488a69559386a56a4a809d2e6046c4c18.tar.gz
Encourage using grpc-netty-shaded instead of grpc-netty
grpc-netty is still really useful, but for most users who aren't doing anything advanced using grpc-netty-shaded is much safer from a dependency basis. grpc-netty-shaded has seen more usage and has shown itself to be stable and reduce the number of conflicts due to Netty versions.
Diffstat (limited to 'documentation')
-rw-r--r--documentation/server-reflection-tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/server-reflection-tutorial.md b/documentation/server-reflection-tutorial.md
index 025d3b050..5fad5a223 100644
--- a/documentation/server-reflection-tutorial.md
+++ b/documentation/server-reflection-tutorial.md
@@ -23,7 +23,7 @@ need to make the following changes:
+++ b/examples/build.gradle
@@ -27,6 +27,7 @@
dependencies {
- compile "io.grpc:grpc-netty:${grpcVersion}"
+ compile "io.grpc:grpc-netty-shaded:${grpcVersion}"
compile "io.grpc:grpc-protobuf:${grpcVersion}"
+ compile "io.grpc:grpc-services:${grpcVersion}"
compile "io.grpc:grpc-stub:${grpcVersion}"