Jack
Jack

Reputation: 133577

Run a job during a SVN commit

which is the best way to integrate a task that should be done on a svn server when a specific repository receives a commit?

Brief explanation: I would like to build a JAR application from a java project that is actually maintained on a personal SVN server and I would like to do it in a fully automatic way.

For now I'm not using any building tool (eg ANT) so a simple but functional solution would be preferred..

Thanks in advance!

Upvotes: 2

Views: 83

Answers (2)

acoolaum
acoolaum

Reputation: 2130

We use Cruise Control for project build (test and distributive creation).

There is a big amount of Continuous Integration tools.

Upvotes: 2

Marcus Frödin
Marcus Frödin

Reputation: 12882

Use a post-commit Repository Hook.

Of course a CI system such as Jenkins will do that for you, and much more.

Upvotes: 5

Related Questions