Reputation: 133577
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
Reputation: 2130
We use Cruise Control for project build (test and distributive creation).
There is a big amount of Continuous Integration tools.
Upvotes: 2
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