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

Im trying to get source files from VSS using Maven.

But when I execute command

mvn -DvssDirectory="C:\Program Files\VisualSourceSafe\win32" scm:update

the log goes to

[INFO] [scm:update {execution: default-cli}] [INFO] Executing: cmd.exe /X /C ""C:\Program Files\VisualSourceSafe\win32\ss" Get $/TEST -R -I- -GWS" [INFO] Working directory: C:\temp\test

and then nothing happens. No error, no success.

Can someone advice how to proceed with downloading sources from VSS?

share|improve this question

2 Answers

Try running mvn with the -X tag (to enable the debugging output) and see if you can figure out where it is getting stuck. Perhaps VSS is waiting for your credentials or something?

Doublecheck the documentation for using the VSS SCM plugin to make sure you aren't missing any properties. If you think you are finding a bug, try reporting an issue at http://jira.codehaus.org/browse/SCM.

share|improve this answer

I wonder if the double quotes are not interfering here. Maybe try to use the "short path name" instead:

mvn -DvssDirectory=C:\Progra~1\Visual~1\win32 scm:update

Or use the provider configuration file $user.home/.scm/vss-settings.xml:

<vss-settings>
  <Settings>
    <vssDirectory>C:\Program Files\VisualSourceSafe\win32</vssDirectory>
  <Settings>
</vss-settings>

And try again.

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.