From fb52c2abafd7b6202f781472c6841e2ccb8b2028 Mon Sep 17 00:00:00 2001 From: Tim Emiola Date: Sun, 25 Jan 2015 09:53:43 -0800 Subject: [PATCH] Moves the proto to the location within the maven repo --- helloworld.proto => src/main/proto/helloworld.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) rename helloworld.proto => src/main/proto/helloworld.proto (87%) diff --git a/helloworld.proto b/src/main/proto/helloworld.proto similarity index 87% rename from helloworld.proto rename to src/main/proto/helloworld.proto index a7f5bfbb4d1..da5c3a1d85d 100644 --- a/helloworld.proto +++ b/src/main/proto/helloworld.proto @@ -1,5 +1,7 @@ syntax = "proto3"; +option java_package = "ex.grpc"; + package helloworld; // The request message containing the user's name. @@ -13,7 +15,7 @@ message HelloReply { } // The greeting service definition. -service Greeting { +service Greetings { // Sends a greeting rpc hello (HelloRequest) returns (HelloReply) { }