Actions
Bug #2546
closedIncorrect SCM url in pom.xml
Status:
Closed
Priority:
Normal
Assignee:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Description
pom.xml currently defines scm block as
<scm>
<connection>scm:git:git@github.com:named-data/jndn.git</connection>
<developerConnection>scm:git:git@github.com:named-data/jndn.git</developerConnection>
<url>https://github.com/named-data/jndn</url>
</scm>
I don't yet know how/when it is used, but it will fail if somebody is not registered with github.
The most universal git URL is with https:// schema. It works both to anonymously get code and secure to upload the code:
Updated by Andrew Brown almost 10 years ago
You can change it to the https:// version according to http://maven.apache.org/scm/git.html but I also have no idea "how/when" this would break (maybe there's a Maven Git plugin that someone uses?).
Updated by Anonymous over 9 years ago
- Status changed from New to Closed
- Assignee set to Anonymous
As requested, changed scm:git:git@github.com to the public scm:git:https://github.com according to http://maven.apache.org/scm/git.html .
Actions