blob: ff5f641b7bb7fabda037e281d553107d0cdb2bc6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.m2e.wtp.internal.mavenarchiver;
import org.eclipse.m2e.core.project.configurator.MojoExecutionKey;
import org.eclipse.m2e.wtp.mavenarchiver.AbstractWTPArchiverConfigurator;
/**
* AcrMavenArchiverConfigurator
*
* @author Fred Bricon
*/
public class AcrMavenArchiverConfigurator extends AbstractWTPArchiverConfigurator {
@Override
protected MojoExecutionKey getExecutionKey() {
MojoExecutionKey key = new MojoExecutionKey("org.apache.maven.plugins", "maven-acr-plugin", "", "acr", null, null); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
return key;
}
}