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

astra.RunnerMojo Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package astra;

import java.io.File;
import java.io.IOException;
import java.util.List;

import org.apache.maven.artifact.DependencyResolutionRequiredException;
import org.apache.maven.execution.MavenSession;
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.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.apache.maven.project.MavenProject;

@Mojo( name = "deploy",  threadSafe = true, requiresDependencyResolution = ResolutionScope.TEST)
public class RunnerMojo extends AbstractMojo {

	@Parameter(defaultValue = "${project}", required = true, readonly = true)
	private MavenProject project;

	@Parameter(defaultValue = "${session}", readonly = true)
	private MavenSession session;

	@Parameter(defaultValue = "astra.Main", readonly = true)
	private String mainClass;

	@Parameter(defaultValue = "main", readonly = true)
	private String mainName;

	public void execute() throws MojoExecutionException, MojoFailureException {
		try {
			List classpath = project.getCompileClasspathElements();
			classpath.add(project.getBuild().getOutputDirectory());
			new ASTRARunCmd(new File(project.getBuild().getDirectory()),
                    mainClass, mainName, classpath).execute();
		} catch (IOException e) {
			e.printStackTrace();
		} catch (InterruptedException e) {
			e.printStackTrace();
		} catch (DependencyResolutionRequiredException e) {
			e.printStackTrace();
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy