I don't know anything about JBoss, but Apache (Tomcat) doesn't 'grab' anything. You have to push the build to the server either using the tomcat manager API or use some other mechanism (SCP, wget, etc.) to otherwise grab the WAR file and get it onto the server.
Jenkins has the 'deploy war/ear to a container' plugin to facilitate this, but it requires (in the case of tomcat) the manager application to be installed and configured. If your production environment is like ours, they will not install the manager application so it is either copied/configured manually or you can script it via a provisioning tool (SaltStack, Chef, Ansible, Puppet, etc.) and there are numerous ways to do it through any of those tools. On Thu, Aug 20, 2015 at 5:12 PM, Martin <[email protected]> wrote: > If I use Nexus OSS as a repository manager, the normal for code goes to > production system is something like below: > > 1) Jenkins grabs code from Perforce or GIT server > 2) Jenkins retrieves dependencies from Nexus > 3) Jenkins test and build the project > 4) The build is deployed to Nexus from Jenkins > 5) Web application server, i.e. JBoss Application Server or Apache Server > grabs code from Nexus, for production service. > > In this flow, the build in Jenkins doesn't directly go or deploy to Web > server, but first parked at Nexus, and goes to Web server. > > Is this understanding right? I would appreciation an explanation for this > cycle. > > -- > You received this message because you are subscribed to the Google Groups > "Jenkins Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/5ff2816c-3d23-42f4-bfde-103e7f8626fb%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/5ff2816c-3d23-42f4-bfde-103e7f8626fb%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Jeff Vincent See my LinkedIn profile at: http://www.linkedin.com/in/rjeffreyvincent -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CAPJK9%3DKLeop06C98jouHZhBmcbjYm%3DwtsHCpkmzm2EzwtXGvWQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
