I'm having trouble setting up maven-scm to work with github private
repositories. The URL that github requires is:
[EMAIL PROTECTED]:johnhampton/re.git
Configuring maven scm with this url doesn't work as the git provider
complains that the url is invalid:
Here is the message:
[INFO] The scm url is invalid.
- A git 'git' url must be on the form 'git://'.
Here is my config:
<scm>
<connection>scm:git:[EMAIL PROTECTED]:johnhampton/re.git</connection>
<developerConnection>scm:git:[EMAIL PROTECTED]:
johnhampton/re.git</developerConnection>
</scm>
According to information at git
hub<http://groups.google.com/group/github/browse_thread/thread/227f909ea6931586/380c41560ed4cc0e?lnk=gst&q=maven#380c41560ed4cc0e>
there
is only one format of url that works...
Any Suggestions?
John