is it possible use Jenkins to create an EAR file for manual deployment? This is because I use Geronimo and cannot find any suitable plugins for automated deployment.
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.
Yes, but you won’t really be using Jenkins to produce the EAR file specifically; Jenkins will run your existing build using Maven, Ant, Gradle or whatever mechanism you use, triggering the build on a schedule or after a change to your SCM system, and archive the EAR file in a given directory.
You might be able to take this further by using the Deploy Plugin, which can deploy a JAR or EAR file to a running application server.