Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote weblogic EAR deploy using jenkins plugin

I am in a sitauation where I have build maven build EAR files and property files which are needed to be deployed on QA remote weblogic hotel instances.

I have build code using maven in jenkins and also have weblogic deployer plugin installed.

But not able to find clear steps on how to configure it to deploy to remote weblogic servers where I don't have admin server rights .

My ears files have project version in name so at times when name change then in weblogic it need to undeploy and deploy with restart how can I achive it using jenkins.

Any help is appeciated( I have gone through post) but I don't have weblogic.jar in my Jenkins server as in my case it is remote server with shared folder with Ear deployment.

like image 709
anthriksh2000 Avatar asked Nov 02 '22 12:11

anthriksh2000


1 Answers

Your weblogic.jar needs to be on the jenkins server somehow. You can upload it to the server and refer to it with a static path, or possibly check it into your SCM and reference it from the workspace of your job (May violate licensing if your SCM repository is public).

like image 124
Electrawn Avatar answered Nov 09 '22 16:11

Electrawn