jira-importer commented on issue #945: URL: https://github.com/apache/maven-scm/issues/945#issuecomment-2964634654
**[Mark Derricutt](https://issues.apache.org/jira/secure/[email protected])** commented It would seem that maven-release-plugin by default ( even the latest release ) is still pulling in maven-scm-1.7 so for the majority of users they might start seeing this silently fail their releases ( much like I just spent the last few hours tracking down ). When I update my plugin configuration do declare the new maven-scm dep it seems to work fine: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.8.1</version> </dependency> </dependencies> .... However, this should be addressed as a separate issue on the m-r-p project. -- 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]
