How can one setup continuous integration server to build multiple dependent projects?
I want to setup continuous integration process for a project hosted on a mercurial repository. The project however, has a compile time dependency on another project hosted in a different mercurial repository (both hosted on Google).
Using Hudson, how can I setup the CI job for both projects (while passing the binary locations of one to the other project build script)? Does other tools handle it better?
Both projects are Java projects with Ant build scripts.