}
public static String resolveMavenHome() throws ResourceNotFoundException {
String m2 = resolveResourcePath(PreferencesConstants.MAVEN_HOME);
if (m2 == null || m2.isEmpty())
throw new ResourceNotFoundException(
"You must define the path to maven home.");
return m2;
}