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

Currently, I have a complex existing project using Visual Source Safe. I would like to change the build system to Maven and keep the source on VSS for now.

It seems that the links on Maven site to VSS are out of date (broken link) and searching on the internet for Maven and VSS did not provide me with much useful information.

Is Maven and VSS (2005 version 8) a viable combination? Any step by step guide available?

Many thanks

share|improve this question
1  
Maven is typically independent of the source control system, with the notable exception of the maven-release-plugin. Where do you see VSS and Maven interacting? – Robert Munteanu May 4 '12 at 13:32
I was thinking to get the latest version of source code from within MVN POM so "mvn deloy" will do everything, and I don't have to create a script to first get source then run MVN. Just something nice to have, and I thought maven would support it. – Desmond May 10 '12 at 21:53

1 Answer

If you want to check out code using Maven, the maven-scm-plugin has a scm:checkout goal . The VSS implementation is partial, so it might work for you.

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.