Using grpc in maven
Asked Answered
L

2

10

Does anyone know how to compile *.proto files for grpc application in maven?

This is how I'm compiling protobuf in maven - (old way, using installed protoc compiler, excerpt from pom.xml):

  <build>
    <plugins>

      <!-- protocol buffers runner, requires protoc -->
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>generate-protobuf-sources</id>
            <phase>generate-sources</phase>
            <configuration>
              <tasks>
                <mkdir dir="target/generated-sources/java" />

                <exec executable="protoc">
                  <arg value="--java_out=target/generated-sources/java" />
                  <arg value="src/main/protobuf/hello.proto" />
                </exec>
              </tasks>
              <sourceRoot>target/generated-sources/java</sourceRoot>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

I wonder if something similar is possible for grpc. From what I understand I need to somehow connect protoc-gen-grpc-java plugin with protobuf, but I'm not sure how to do that.

UPDATE: For those who interested I created a fully working example of client-server app using maven on github.

Lilly answered 11/3, 2016 at 7:12 Comment(0)
P
13

I'd highly recommend using protobuf-maven-plugin as described in the grpc-java README.

If you really want to do it manually, you can download protoc-gen-grpc-java from Maven Central and add another <arg> for the exec of protoc:
--plugin=protoc-gen-grpc-java=path/to/protoc-gen-grpc-java

Puzzle answered 11/3, 2016 at 23:52 Comment(2)
I updated my question with a link to my github repo with a fully working example.Lilly
Step by step tutorial using grpc-java and maven at bertrandszoghy.wordpress.com/2017/06/01/…Delila
S
2

protoc-jar-maven-plugin does not require installing the protoc compiler, unlike protobuf-maven-plugin.

Add this to your plugins:

<plugin>
    <groupId>com.github.os72</groupId>
    <artifactId>protoc-jar-maven-plugin</artifactId>
    <version>3.11.4</version>
    <executions>
        <execution>
            <phase>generate-sources</phase>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>

and it uses the cross platform protoc-jar to generate your protobuf.

Strigose answered 21/8, 2023 at 1:59 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.