web-dev-qa-db-ja.com

BitBucket + Git + Mavenでリリースするにはどうすればよいですか

私の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>
16
DarVar

理想的には、リリースを行うときに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>  

これも見ることができます

26
jens