I am developing a web application using Maven and I am using Jetty's plugin (mvn jetty:run) to speed up development. Unfortunately, the plugin appears to keep static files open (such as JavaScript files), thus preventing me from saving subsequent changes. My only solution so far is to restart the server, but that wastes a lot of time.
How can I force Jetty's Maven plugin to release its file handles to static resources?