in src/main/java/org/apache/maven/plugins/install/InstallMojo.java [166:174]
private void installProject(ArtifactInstallerRequest request) {
try {
getArtifactInstaller().install(request);
} catch (MojoException e) {
throw e;
} catch (Exception e) {
throw new MojoException(e.getMessage(), e);
}
}