Search code examples
javaeclipseweb-servicessvnapache-axis

Web service: update on svn commit


I'm developing Axis2 web service, and all source code is stored in svn repository. Web service is running on external server. Is it possible to automatically update web service every time I commit to svn? If yes, how can I do that? I use Eclipse as IDE.


Solution

  • In a few words: check out Continuous Integration.

    You could also achieve the same goal by writing a simple shell script (scheduled by crontab) that would checkout svn and build and deploy in case there are any changes. But there are nicer options that give you much better visibility, eg. Jenkins (aka Hudson), CruiseControl.