I think this is not easy with the standard
JAR tool, because it does not have a command line option to exclude a particular kind of file.
If you're using
Ant you can specify this with an "excludes" attribute in your build.xml:
<jar destfile="myapp.jar" basedir="." excludes="**/*.vss"/>