user3133542
user3133542

Reputation: 1715

Jenkins: How to create a Job for multiple Java Projects?

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

Answers (1)

SHaaD
SHaaD

Reputation: 139

You can try MultiJobPlugin, create jobs for building and deploying different projects, then unite them in MultiJob and start it.

Upvotes: 1

Related Questions