Ant has build-in task “genkey” used to generate some key and put into desired keystore. But what if I need to export some key from certain keystore and import it into another one?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It seems there is no build-in ant task to perform the operations (very strange). To deal with export and import one should use generic exec task that executes shell command. Something like this should be used for export:
Similar for import.