如何使用BitBucket + Git + Maven发布

时间:2013-03-05 20:55:18

标签: git maven bitbucket maven-release-plugin

我在我的pom中指定了以下SCM标记。 但是,当我执行maven release:prepare时,创建的标记版本为1.0-SNAPSHOT而不是1.0

有什么想法吗?

 <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>

1 个答案:

答案 0 :(得分:25)

理想情况下,您在执行发布时会使用SSH进行身份验证。在这种情况下,您将使用以下配置:

<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>  

您还可以查看此example