You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by el...@apache.org on 2020/04/12 17:04:11 UTC

[maven-release] branch master updated: update xmlunit (#47)

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

elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-release.git


The following commit(s) were added to refs/heads/master by this push:
     new 01b8db4  update xmlunit (#47)
01b8db4 is described below

commit 01b8db42dbf7b4277ba6fa796de7cc4b35a4fac9
Author: Elliotte Rusty Harold <el...@users.noreply.github.com>
AuthorDate: Sun Apr 12 13:04:04 2020 -0400

    update xmlunit (#47)
    
    * update xmlunit and not plexus-utils
---
 .../org/apache/maven/shared/release/exec/CommandLineFactoryTest.java | 5 ++++-
 pom.xml                                                              | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/maven-release-manager/src/test/java/org/apache/maven/shared/release/exec/CommandLineFactoryTest.java b/maven-release-manager/src/test/java/org/apache/maven/shared/release/exec/CommandLineFactoryTest.java
index f041b46..4bdedb0 100644
--- a/maven-release-manager/src/test/java/org/apache/maven/shared/release/exec/CommandLineFactoryTest.java
+++ b/maven-release-manager/src/test/java/org/apache/maven/shared/release/exec/CommandLineFactoryTest.java
@@ -22,6 +22,8 @@ package org.apache.maven.shared.release.exec;
 import org.codehaus.plexus.PlexusTestCase;
 import org.codehaus.plexus.util.cli.Commandline;
 
+import java.util.Locale;
+
 /**
  * Test the command line factory.
  *
@@ -46,7 +48,8 @@ public class CommandLineFactoryTest
     {
         Commandline cl = factory.createCommandLine( "exec" );
 
-        assertEquals( "Check executable", "exec", cl.getExecutable() );
+        String executable = cl.getExecutable();
+        assertTrue( "Check executable " + executable, executable.contains("exec") );
         assertNotNull( "Check environment", cl.getEnvironmentVariables() );
         assertFalse( "Check environment", cl.getEnvironmentVariables().length == 0 );
     }
diff --git a/pom.xml b/pom.xml
index a90e0ab..253e248 100644
--- a/pom.xml
+++ b/pom.xml
@@ -202,7 +202,7 @@
       <dependency>
         <groupId>org.xmlunit</groupId>
         <artifactId>xmlunit-core</artifactId>
-        <version>2.5.1</version>
+        <version>2.6.4</version>
       </dependency>
     </dependencies>
   </dependencyManagement>