com.jayway.maven.plugins.android.standalonemojos.EmulatorStopAllMojo 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;
/**
* EmulatorStopeAllMojo will stop all attached devices.
*
* @author Bryan O'Neil
* @goal emulator-stop-all
* @requiresProject false
*/
public class EmulatorStopAllMojo extends AbstractEmulatorMojo {
/**
* Start the Android Emulator.
*
* @throws org.apache.maven.plugin.MojoExecutionException
*
* @throws org.apache.maven.plugin.MojoFailureException
*
*/
public void execute() throws MojoExecutionException, MojoFailureException {
stopAndroidEmulators();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy