jira-importer commented on issue #901: URL: https://github.com/apache/maven-scm/issues/901#issuecomment-2964632033
**[Raúl Wegmann](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rwegmann)** commented Version 1.8.1 fixes the problem for us. We had to add the following section to our parent POM in order to force the maven-release-plugin to use version 1.8.1, because version 2.4 still depends on version 1.8: ``` <pluginManagement> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.4</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-svnexe</artifactId> <version>1.8.1</version> </dependency> </dependencies> <configuration> <useReleaseProfile>false</useReleaseProfile> </configuration> </plugin> </pluginManagement> ``` -- 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]
