Reputation: 1715
I am using Jenkins to support the build-and deploy process of my microservices. I have managed to create a Jenkins Job that builds a war file and deploys it to a Wildfly Application Server.
But how to create a job which builds and deploys more than one Java project at the same time?
Upvotes: 0
Views: 628
Reputation: 139
You can try MultiJobPlugin, create jobs for building and deploying different projects, then unite them in MultiJob and start it.
Upvotes: 1