xolstice / protobuf-maven-plugin

Maven Plugin that executes the Protocol Buffers (protoc) compiler
https://www.xolstice.org/protobuf-maven-plugin/
Other
232 stars 76 forks source link

Fix file descriptor leak #73

Closed laurentgo closed 3 years ago

laurentgo commented 4 years ago

Address a file descriptor leak in AbstractProtocMojo#makeProtoPathFromJar method: the method iterates over jar files to check for protobuf definitions but do not close the jar once finished scanning it.

Fixes xolstice/protobuf-maven-plugin#72

sergei-ivanov commented 3 years ago

Awesome, thank you very much for the PR!