All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codename1.maven.SetupCN1AppMojo Maven / Gradle / Ivy

There is a newer version: 7.0.164
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.codename1.maven;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Execute;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

/**
 *
 * @author shannah
 */
@Mojo(name = "setup-cn1app")
@Execute(phase = LifecyclePhase.INTEGRATION_TEST)
public class SetupCN1AppMojo extends AbstractCN1Mojo {

    @Override
    protected void executeImpl() throws MojoExecutionException, MojoFailureException {
        getLog().info("Running Setup for CN1 Mojo");
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy