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

it.ness.queryable.plugin.greeting.GreetingMojo Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package it.ness.queryable.plugin.greeting;

import it.ness.queryable.plugin.QuerableBaseMojo;
import it.ness.queryable.util.MojoUtils;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

/**
 * Queryable is maven plugin for filter defs.
 */
@Mojo(name = "greeting",
        defaultPhase = LifecyclePhase.PROCESS_RESOURCES,
        threadSafe = true)
public class GreetingMojo extends QuerableBaseMojo {


    public void execute() throws MojoExecutionException {
        init(getLog());
        if (logging)
            log.info(String.format("Begin generating Greating entity in groupId {%s} and artifactId", parameters.groupId, parameters.artifactId));
        MojoUtils.greeting(parameters, log);
        if (logging) log.info("Done generating Greeeting class");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy