私のpomで次のSCMタグを指定しました。しかし、私がメイヴンをするときrelease:prepare
作成されたタグのバージョンは1.0です-1.0ではなくSNAPSHOT
何か案は?
<scm>
<connection>scm:git:https://<username>@bitbucket.org/<username>/<repo>.git</connection>
<developerConnection>scm:git:https://<username>@bitbucket.org/<username>/<repo>.git</developerConnection>
<url>https://bitbucket.org/<username>/<project></url>
</scm>
理想的には、リリースを行うときにSSHを使用して認証します。その場合、次の構成を使用します。
<scm>
<connection>scm:git:ssh://[email protected]/<username>/<repo>.git</connection>
<developerConnection>scm:git:ssh://[email protected]/<username>/<repo>.git</developerConnection>
<url>https://bitbucket.org/<username>/<repo>.git</url>
</scm>
これも見ることができます 例 。