I'm cleaning up pom files in my project and find out I use two slightly different scm records:
<scm>
<connection>scm:git:https://github.com/jadler-mocking/jadler.git</connection>
<developerConnection>scm:git:https://github.com/jadler-mocking/jadler.git</developerConnection>
<url>https://github.com/jadler-mocking/jadler</url>
</scm>
vs
<scm>
<connection>scm:git:git@github.com:jadler-mocking/jadler.git</connection>
<developerConnection>scm:git:git@github.com:jadler-mocking/jadler.git</developerConnection>
<url>https://github.com/jadler-mocking/jadler</url>
</scm>
I haven't been able to find any resource describing the syntax of the connection strings so far. What is the difference between these two?