/* * Copyright (C) 2009 Jayway AB * Copyright (C) 2007-2008 JVending Masa * Copyright (C) 2010 akwuinet A.G. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.simpligility.maven.plugins.android.standalonemojos; import com.simpligility.maven.plugins.android.AbstractAndroidMojo; import com.simpligility.maven.plugins.android.config.ConfigHandler; import com.simpligility.maven.plugins.android.config.ConfigPojo; import com.simpligility.maven.plugins.android.config.PullParameter; import com.simpligility.maven.plugins.android.configuration.DeployApk; import com.simpligility.maven.plugins.android.configuration.ValidationResponse; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import java.io.File; /** * Reploys a specified Android application apk to attached devices and emulators. * By default it will deploy to all, but a asubset or single one can be configured * with the device and devices parameters. This simply tries to undeploy the APK * first and then deploy it again. This goal can be used in non-android projects and * as standalone execution on the command line.<br> * * @author Manfred Moser - manfred@simpligility.com */ @Mojo( name = "redeploy-apk", requiresProject = false ) public class RedeployApkMojo extends AbstractAndroidMojo { /** * Configuration for apk file redeployment within a pom file. See {@link #deployapkFilename}. * * <pre> * <deployapk> * <filename>yourapk.apke</filename> * </deployapk> * </pre> */ @Parameter @ConfigPojo protected DeployApk deployapk; @Parameter( property = "android.deployapk.filename" ) private File deployapkFilename; @PullParameter private File parsedFilename; public void execute() throws MojoExecutionException, MojoFailureException { ConfigHandler configHandler = new ConfigHandler( this, this.session, this.execution ); configHandler.parseConfiguration(); ValidationResponse response = DeployApk.validFileParameter( parsedFilename ); if ( response.isValid() ) { getLog().debug( "Undeploying with file " + parsedFilename ); undeployApk( parsedFilename ); getLog().debug( "Deploying with apkFile " + parsedFilename ); deployApk( parsedFilename ); } else { throw new MojoFailureException( response.getMessage() ); } } }