I created a simple maven spring boot 1.5.2.RELEASE application with the help of Spring initilizr website to test gRPC with spring boot app. As anyone would do, i loop up for spring boot starter for gRPC to help for configuration complexity.
<dependency>
<groupId>org.lognet</groupId>
<artifactId>grpc-spring-boot-starter</artifactId>
<version>2.0.0</version>
</dependency>
The problem is Maven does not seem to get this dependency. Error is Dependency '''org.lognet:grpc-spring-boot-starter:2.0.0''' not found
Is there any simple way to use gRPC with spring boot?