> When I do a comparison of the files after a > clean deploy, the private.p8 and public.key files are changed. It's almost > like maven is hanging on to the wrong file and deploying it.
Maven is likely the problem, but not for the reason you propose. I would imagine you are performing property filtering on a pattern like *.* and are therefore filtering binary files as well as text ones. Since DER-encoded files are binary, your certificate and private key files are being filtered into oblivion. Try using a more restrictive pattern like *.xml to filter just text configuration files to avoid this. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
