Use mvn command instead of deprecated m2

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@350201 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2005-12-01 07:48:50 +00:00
parent d5f6646670
commit 2177e3763e
1 changed files with 2 additions and 2 deletions

View File

@ -604,11 +604,11 @@ public class Verifier
String executable;
if ( mavenHome != null )
{
executable = mavenHome + "/bin/m2";
executable = mavenHome + "/bin/mvn";
}
else
{
executable = "m2";
executable = "mvn";
}
cli.setExecutable( executable );