davidB / yuicompressor-maven-plugin

maven's plugin to compress (Minify / Ofuscate / Aggregate) Javascript files and CSS files using YUI Compressor
http://davidb.github.io/yuicompressor-maven-plugin/
GNU Lesser General Public License v2.1
122 stars 48 forks source link

Quick fix to ensure temporary files are not left around after plugin execution #28

Closed rborer closed 13 years ago

rborer commented 13 years ago

Hello David,

I have been using your Maven plugin for a while and it is working very well. Thanks for the good job. I discovered a small issue while using it in that for each execution, a temporary file is created, but never cleaned. Of course those files are created in a temporary folder, but if it is not purged, then a lot of files will stay inside. That's what is happening on my CI infrastructure for example.

Thus, I made this small one-line change to ensure that temporary files are deleted once the JVM is shut down.

Would you mind merging this fix for the next version of your plugin?

Best regards, Reynald