I am deploying my project to a web server for deployment using java Web Start. However, Web Start uses the modification date to find out if resources need to be reloaded (by default).
What I want is a way to deploy those (jar) files that don't exist yet. This was made possible due to the presence of assembly version numbers on all my jars, so 2 jars with the same name have the same contents.
Notes:
- Jar modification dates will always be newer in the assembly (which is why I get this problem), due to loading from svn or ivy
- There is a way to do this using the download servlet, more files, etc., but I'm lazy, don't need it, and this (simpler) solution will be more reliable in the long run
source
share