Joe
Joe

Reputation: 8042

Cannot check out maven projects in Netbeans

I am trying to check out a maven projects in Netbeans. However, I am failing. The error message I get whenever I try to check something out is:

Provider message: The svn command failed. Command output: 'svn' is not recognized as an internal or external command,

Upvotes: 0

Views: 526

Answers (1)

Andrew Logvinov
Andrew Logvinov

Reputation: 21831

Most probably, you don't have svn in your PATH.

If you're running Windows, try echo %PATH% in command line and check if svn is available in the folders that are in your path.

If you're using Linux, try which svn. If nothing is returned, svn is not installed.

For Windows, I'm using silksvn command line client.

Upvotes: 2

Related Questions