Added skipAmpInstallation parameter which exits the InstallMojo execution before validation

git-svn-id: http://maven-alfresco-archetypes.googlecode.com/svn/trunk@703 04253f4f-3451-0410-a141-5562f1e59037
This commit is contained in:
rgauss
2013-10-23 09:43:53 +00:00
parent 59f63764ec
commit 7b1d3cca7c

View File

@@ -70,12 +70,22 @@ public class InstallMojo extends AbstractMojo {
* @parameter property="maven.alfresco.skipWarManifestCheck" default-value="false"
*/
private boolean skipWarManifestCheck;
/**
* Whether or not to skip the attempt to install the AMP in the warLocation altogether
*
* @parameter property="maven.alfresco.skipAmpInstallation" default-value="false"
*/
private boolean skipAmpInstallation;
public InstallMojo() {
}
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
if (skipAmpInstallation) {
return;
}
// Checks appropriate input params are in place
checkParams();
ModuleManagementTool mmt = new ModuleManagementTool();