Remote weblogic EAR deployment using jenkins plugin

I am in sitauation, where I have a assembly of MAT files and maven property files that need to be deployed to remote QA websites.

I have build code using maven in jenkins and also installed a plugin for weblogic deployment.

But I cannot find clear steps to configure it for deployment on remote weblog servers, where I do not have administrator rights.

My files with ears have a version of the project by name, so sometimes when the name changes, and then in weblogic, you need to deploy and deploy with reboot, how can I achieve it using jenkins.

Any help is called (I went through post ), but I don't have weblogic.jar on my Jenkins server, as in my case it is a remote server with a shared folder with ears deployed.

+4
source share
1 answer

Your weblogic.jar must somehow be on the jenkins server. You can upload it to the server and access it with a static path, or perhaps check it in your SCM and refer to it from the workspace of your work (it may violate licensing if your SCM repository is public).

+2
source

All Articles