I am a bit tired of signing webstart jars . Is there some way to automate this. Preferably with integration in eclipse?
I did it with Ant inside Eclipse.
Cas
I use a shell script when signing a batch of jars (using the unix ‘find’ command), password can be saved or specified once per batch.
Will.
http://www.vamphq.com/ has a whole suite of tools around webstart. Can’t say I’ve ever tried them so I don’t know about integration with Eclipse.
Kev
Here’s the ‘signjars’ shell script:
find . -name '*.jar' -print -exec jarsigner -storepass $1 '{}' certname \;
Usage is:
./signjars
Using an ant task is good too - but this can be conveniant if you get a bunch of jar files which someone else built that you are to sign.
Will.