0

We want to be able to deploy our project using Hudson, but the build file for the project generates some files and downloads packages from other locations.

Is it possible to make Hudson do these tasks as part of a deployment?

qodeninja
  • 10,946
  • 30
  • 98
  • 152

3 Answers3

2

Hudson (Jenkins) has support for Ant, so yes, you can run any deployment tasks specified in your Ant scripts.

Bernard
  • 7,908
  • 2
  • 36
  • 33
0

And here is the link to the corresponding page in the hudson wiki: Building A Software Project

Jens Theeß
  • 580
  • 1
  • 3
  • 15
0

You can use the maven ant plugin (http://maven.apache.org/plugins/maven-antrun-plugin/) to run ant script in hudson without configuring hudson. This is good for running the ant script manuelly as well as using hudson.