jira-importer commented on issue #1050: URL: https://github.com/apache/maven-scm/issues/1050#issuecomment-2964642876
**[Jamel](https://issues.apache.org/jira/secure/[email protected])** commented I have a similar problem. however I may not had the same warning but french accent lost and replaced by wird characters in the changelog.xml result (after executing changelog plugin ) So far, I realized that a bug may be present in the scm git-exe plugin. In my case, passing System.getProperty("file.encoding") to --encoding param of "git whatchanged" command resolve the problem. org.apache.maven.scm.provider.git.gitexe.command.changelog.GitChangeLogCommand.createCommandLine() I added this line of code: cl.createArg().setValue( "--encoding=" + System.getProperty("file.encoding")); recompiled and installed maven-scm-provider-gitexe-1.9.4 artifact -- 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]
