Maven 和 java:如何从测试目录中的 protobuf 文件生成代码?

Maven and java: how to generate code from protobuf files in test directory?

我的问题与此非常相似 但针对 Maven 和 java。

我正在测试 grpc,并想在 test/proto 文件夹中放置一个简单的 helloworld.proto。

但是该文件不会生成 java 文件(与 /src/main/proto 中的原型文件不同)。

所以我的问题是如何在test文件夹中为proto生成代码?

首先,按照documentation使用org.xolstice.maven.plugins protobuf-maven-plugin。

或者,您可以复制 example pom.xml(这是固定到 v1.19.0 版本;考虑使用最新标签)。这个 pom 被 helloworld 示例等使用。

然后为 protobuf-maven-plugin 添加 test-compiletest-compile-custom 目标。这将导致生成 src/test/proto 中的文件。

      <plugin>
        <groupId>org.xolstice.maven.plugins</groupId>
        <artifactId>protobuf-maven-plugin</artifactId>
        <version>0.5.1</version>
        <configuration>
          <protocArtifact>com.google.protobuf:protoc:${protoc.version}:exe:${os.detected.classifier}</protocArtifact>
          <pluginId>grpc-java</pluginId>
          <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>
              <goal>compile-custom</goal>
              <goal>test-compile</goal>
              <goal>test-compile-custom</goal>
            </goals>
          </execution>
        </executions>
      </plugin>