I have a couple of directories containing jars, all of which I'd like to sign:
<project>/lib/<project>.jar <project>/deploy/*.jar The first one is easy, btu I can't seem to get signjar to work with the whole ste of jars I need it to sign. Its as if signjar doesn't accept filesets. How can I do this? Here's my current XML: <target name="sign" depends="jar"> <echo>Sign...</echo> <signjar alias="MyKey" storepass="african or european" keystore="${build.dir}/.keystore" verbose="true" > <fileset dir="${build.dir}"> <patternset> <include name="${lib.dir}/*.jar"/> <include name="${deploy.dir}/*.jar"/> </patternset> </fileset> </signjar> <echo>Sign Done.</echo> </target> Regards, Brian. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>