Skip to content

Commit b90e8f6

Browse files
author
Alexander Furer
committed
closes #203
1 parent a415d04 commit b90e8f6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,17 @@ dependencies {
4444
4545
----
4646

47+
By default, starter pulls `io.grpc:grpc-netty-shaded` as transitive dependency, if you are forced to use pure `grpc-netty` dependency:
48+
49+
[source,groovy]
50+
----
51+
compile ('io.github.lognet:grpc-spring-boot-starter:4.4.7') {
52+
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
53+
}
54+
compile 'io.grpc:grpc-netty:1.37.0' // <1>
55+
----
56+
<1> Make sure to pull the version that matches the release.
57+
4758
If you are using Spring Boot Dependency Management plugin, it might pull not the same version as the version this started was compiled against, causing binary incompatibility issue. +
4859
In this case you'll need to forcibly and explicitly set the `grpc` version to use (see link:ReleaseNotes.adoc[version matrix here^] ):
4960

0 commit comments

Comments
 (0)