public String getExecutable()

in src/main/java/org/apache/maven/shared/verifier/Verifier.java [1243:1256]


    public String getExecutable()
    {
        // Use a strategy for finding the maven executable, John has a simple method like this
        // but a little strategy + chain of command would be nicer.

        if ( mavenHome != null )
        {
            return mavenHome + "/bin/mvn";
        }
        else
        {
            return "mvn";
        }
    }