You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2021/08/05 20:01:39 UTC

[maven-scm] branch SCM-954 created (now 0667ecb)

This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a change to branch SCM-954
in repository https://gitbox.apache.org/repos/asf/maven-scm.git.


      at 0667ecb  [SCM-954] Always use --internal-diff for SvnDiffCommand in svnexe provider

This branch includes the following new commits:

     new 0667ecb  [SCM-954] Always use --internal-diff for SvnDiffCommand in svnexe provider

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[maven-scm] 01/01: [SCM-954] Always use --internal-diff for SvnDiffCommand in svnexe provider

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

michaelo pushed a commit to branch SCM-954
in repository https://gitbox.apache.org/repos/asf/maven-scm.git

commit 0667ecbe8b0996d2e19a10ccdd859f18d3a19200
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Thu Aug 5 22:01:33 2021 +0200

    [SCM-954] Always use --internal-diff for SvnDiffCommand in svnexe provider
---
 .../maven/scm/provider/svn/svnexe/command/diff/SvnDiffCommand.java      | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/diff/SvnDiffCommand.java b/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/diff/SvnDiffCommand.java
index d0c3386..c4c6d87 100644
--- a/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/diff/SvnDiffCommand.java
+++ b/maven-scm-providers/maven-scm-providers-svn/maven-scm-provider-svnexe/src/main/java/org/apache/maven/scm/provider/svn/svnexe/command/diff/SvnDiffCommand.java
@@ -99,6 +99,8 @@ public class SvnDiffCommand
 
         cl.createArg().setValue( "diff" );
 
+        cl.createArg().setValue( "--internal-diff" );
+
         if ( startVersion != null && StringUtils.isNotEmpty( startVersion.getName() ) )
         {
             cl.createArg().setValue( "-r" );