Kumar
Kumar

Reputation: 1124

Ant with Hudson War

I have built my application in Hudson. It is working fine, but I need a link on the Hudson page where I can download the war file generated by Hudson, so that I can download and deploy it on the server. Can you please help me in this?

Upvotes: 1

Views: 443

Answers (2)

abahgat
abahgat

Reputation: 13530

In general, Hudson publishes your project's artifacts (the JARs and WARs it builds) in the "Last Successful Artifacts" section of your project's page.

You should be able to find that section at http://$SERVER/hudson/job/$PROJECT_NAME/lastSuccessfulBuild/artifact/ if you have configured your project to archive artifacts.

Upvotes: 3

Michael Borgwardt
Michael Borgwardt

Reputation: 346566

In the Hudson configuration for your project, look at the Post-build actions. "Archive artifacts" does what you want.

Upvotes: 2

Related Questions