com.jayway.maven.plugins.android.standalonemojos.EmulatorStopMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
package com.jayway.maven.plugins.android.standalonemojos;
import com.jayway.maven.plugins.android.AbstractEmulatorMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
/**
* EmulatorStartMojo can stop the Android Emulator with a specified Android Virtual Device (avd).
*
* @author Manfred Moser
* @goal emulator-stop
* @requiresProject false
*/
public class EmulatorStopMojo extends AbstractEmulatorMojo
{
/**
* Stop the emulator(s).
*
* @throws MojoExecutionException
* @throws MojoFailureException
*/
public void execute() throws MojoExecutionException, MojoFailureException
{
stopAndroidEmulator();
}
}