jira-importer commented on issue #788: URL: https://github.com/apache/maven-scm/issues/788#issuecomment-2964624176
**[Gergely Kiss](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=kgeri)** commented Sorry for the disturbance, I just found the solution by myself. Bazaar tag support is actually implemented _and released_ in 1.4, but the current maven-release-plugin (2.0) still only uses 1.3 for some reason. It is also weird that the 2.1-SNAPSHOT version of maven-release looks for 1.4-SNAPSHOT (which doesn't exist anymore). So with a slight hack in the pom, tagging works perfectly with Bazaar: \<build> \<plugins> ... \<plugin> \<groupId>org.apache.maven.plugins\</groupId> \<artifactId>maven-release-plugin\</artifactId> \<version>2.0\</version> \<dependencies> \<dependency> \<groupId>org.apache.maven.scm\</groupId> \<artifactId>maven-scm-api\</artifactId> \<version>1.4\</version> \</dependency> \<dependency> \<groupId>org.apache.maven.scm\</groupId> \<artifactId>maven-scm-provider-bazaar\</artifactId> \<version>1.4\</version> \</dependency> \</dependencies> \</plugin> ... \</plugins> \</build> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
