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

io.takari.maven.testing.MavenRuntime Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package io.takari.maven.testing;

import java.io.File;

import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.Mojo;
import org.apache.maven.plugin.MojoExecution;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.DefaultPlexusContainer;
import org.codehaus.plexus.component.repository.exception.ComponentLookupException;

interface MavenRuntime {

  void shutdown();

  MavenProject readMavenProject(File basedir) throws Exception;

  MavenSession newMavenSession(File baseir) throws Exception;

  MojoExecution newMojoExecution(String goal);

  Mojo executeMojo(MavenSession session, MavenProject project, MojoExecution execution) throws Exception;

  Mojo lookupConfiguredMojo(MavenSession session, MojoExecution execution) throws Exception;

  DefaultPlexusContainer getContainer();

   T lookup(Class role) throws ComponentLookupException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy