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.
I had this same problem, and I was able to work around it by closing my IDE (VS code) and re-running mvn install. It is likely caused by some process using/looking at that directory, and causing the delete to fail.
When I use Eclipse, this doesn't occur, likely because I don't have the gbp folder loaded as a maven project
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: