git maven bitbucket maven-release-plugin

¿Cómo puedo lanzar con BitBucket+Git+Maven?



maven-release-plugin (1)

Lo ideal sería utilizar SSH para autenticarse al hacer el lanzamiento. En ese caso utilizarías la siguiente configuración:

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

También puedes echar un vistazo a este example .

He especificado las siguientes etiquetas SCM en mi pom. Sin embargo, cuando hago una release:prepare Maven release:prepare la etiqueta creada tiene una versión 1.0-SNAPSHOT en lugar de 1.0

¿Algunas ideas?

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