Skip to content

Commit 01b8db4

Browse files
authored
update xmlunit (apache#47)
* update xmlunit and not plexus-utils
1 parent 5735b09 commit 01b8db4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

maven-release-manager/src/test/java/org/apache/maven/shared/release/exec/CommandLineFactoryTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
import org.codehaus.plexus.PlexusTestCase;
2323
import org.codehaus.plexus.util.cli.Commandline;
2424

25+
import java.util.Locale;
26+
2527
/**
2628
* Test the command line factory.
2729
*
@@ -46,7 +48,8 @@ public void testCreation()
4648
{
4749
Commandline cl = factory.createCommandLine( "exec" );
4850

49-
assertEquals( "Check executable", "exec", cl.getExecutable() );
51+
String executable = cl.getExecutable();
52+
assertTrue( "Check executable " + executable, executable.contains("exec") );
5053
assertNotNull( "Check environment", cl.getEnvironmentVariables() );
5154
assertFalse( "Check environment", cl.getEnvironmentVariables().length == 0 );
5255
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
<dependency>
203203
<groupId>org.xmlunit</groupId>
204204
<artifactId>xmlunit-core</artifactId>
205-
<version>2.5.1</version>
205+
<version>2.6.4</version>
206206
</dependency>
207207
</dependencies>
208208
</dependencyManagement>

0 commit comments

Comments
 (0)