|
Warning
|
This project is deprecated for removal, instead you should use https://github.com/eclipse-vertx/vertx-grpc |
-
client and server
-
server scaling
-
ssl configuration with options
-
auto close in Verticle
To use vertx-grpc-protoc-plugin with the protobuf-maven-plugin, add a custom protoc plugin configuration section.
<protocPlugins>
<protocPlugin>
<id>vertx-grpc-protoc-plugin</id>
<groupId>io.vertx</groupId>
<artifactId>vertx-grpc-protoc-plugin</artifactId>
<version>[VERSION]</version>
<mainClass>io.vertx.grpc.protoc.plugin.VertxGrpcGenerator</mainClass>
</protocPlugin>
</protocPlugins>
And add the vertx-grpc dependency:
<dependency> <groupId>io.vertx</groupId> <artifactId>vertx-grpc</artifactId> <version>[VERSION]</version> </dependency>