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

org.sitoolkit.wt.plugin.maven.GetSampleMojo Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
package org.sitoolkit.wt.plugin.maven;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.sitoolkit.wt.app.sample.SampleManager;

@Mojo(name = "sample")
public class GetSampleMojo extends AbstractMojo {

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        SampleManager sample = new SampleManager();
        sample.unarchiveBasicSample();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy