shiver.me.timbers.plugins.invoker.multi.MultiInvokerConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multi-invoker-maven-plugin Show documentation
Show all versions of multi-invoker-maven-plugin Show documentation
This plugin can be used to invoke the current maven project multiple times with different profiles or
properties.
The newest version!
package shiver.me.timbers.plugins.invoker.multi;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.project.MavenProject;
import java.util.List;
import java.util.Properties;
/**
* @author Karl Bennett
*/
interface MultiInvokerConfiguration {
MavenProject getProject();
MavenSession getSession();
Log getLog();
String getInvocationId();
boolean isForEachProfile();
List getInvocations();
List getProfiles();
List getGoals();
Properties getProperties();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy