Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Maven Spring MVC project. How do I add that to a SVN and perform commits and how do I deploy it to a Tomcat server via SVN checkout. I have created an account with assembla. what's the next step?

Currently I use mvn war:war command to build war for deployment. But its a tedious job as for a small change we may have to deploy all the files again.

Or do you suggest any other method for the same?

share|improve this question

2 Answers

+1 for Jenkins. In DEV, if you run a Tomcat server locally, you can create a symbolic link from your src/main/webapp folder into the deploy folder (the linked should have .war suffix).

To have all libs (and other required configured resources) automatically injected in src/main/webapp/WEB-INF, run mvn war:inplace (make sure you do no commit those resources to SVN)

A dummy edit to web.xml will trigger an automatic re-deploy in Tomcat (not true in Jetty)

share|improve this answer

You have to check out, compile, test, build, report and deploy. That's a job for jenkins.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.