Priyanka Iyer
Priyanka Iyer

Reputation: 185

Jenkins - Post Build to a Folder

does jenkins have a post build process such that the build WAR files can be made to be stored particular folder?

Upvotes: 5

Views: 8834

Answers (1)

jwernerny
jwernerny

Reputation: 7048

There are a couple of different ways to move built files. The first is through plugins. Which plugin you use depends on where you want to store things. Try looking at these sections of the Jenkins Plugin list:

The second way of moving built files is to brute force the move by creating a Jenkins build step to execute a set of shell commands.

Upvotes: 5

Related Questions