You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am using protobuf-maven-plugin in my application and i am using bazel to build the app .
suprisingly intermitently i am getting issue unable to clean up temporary proto file directory.
Hi,
i am using protobuf-maven-plugin in my application and i am using bazel to build the app .
suprisingly intermitently i am getting issue unable to clean up temporary proto file directory.
this is my protobuf plugin.
<plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <configuration> <writeDescriptorSet>true</writeDescriptorSet> <includeDependenciesInDescriptorSet>true</includeDependenciesInDescriptorSet> <descriptorSetOutputDirectory>${project.build.directory}</descriptorSetOutputDirectory> <descriptorSetFileName>total_trip_proto-descriptor-set.proto.bin</descriptorSetFileName> <clearOutputDirectory>false</clearOutputDirectory> <protocArtifact> com.google.protobuf:protoc:3.3.0:exe:${os.detected.classifier} </protocArtifact> <pluginId>grpc-java</pluginId> <pluginArtifact> io.grpc:protoc-gen-grpc-java:1.33.0:exe:${os.detected.classifier} </pluginArtifact> </configuration> <executions> <execution> <goals> <goal>compile</goal> <goal>compile-custom</goal> </goals> </execution> </executions> </plugin> </plugins>
The text was updated successfully, but these errors were encountered: