How do I release with BitBucket+Git+Maven How do I release with BitBucket+Git+Maven git git

How do I release with BitBucket+Git+Maven


Ideally you would use SSH to authenticate when doing the release. In that case you would use the following configuration:

<scm>    <connection>scm:git:ssh://git@bitbucket.org/<username>/<repo>.git</connection>    <developerConnection>scm:git:ssh://git@bitbucket.org/<username>/<repo>.git</developerConnection>    <url>https://bitbucket.org/<username>/<repo>.git</url></scm>  

You can also take a look at this example.