I m deploying my project to a web-server to be deployed with java Web Start. However, Web Start uses modification date to figure out whether to download the resources again (by default).
What I want is a way to only deploy those (jar) files that do not already exist. This is made possible by having build-version numbers on all my jars, so 2 jars with the same name have the same contents.
Notes:
- The jar modification dates will always be newer in the build (which is why I m getting this problem), due to downloading from svn or ivy
- There s a way to do this using sun s download servlet, more files etc, but I m lazy, don t need it, and this (simpler) solution will be more robust in the long term