org.openengsb.openengsbplugin.tools.MavenExecutor Maven / Gradle / Ivy
/**
* Licensed to the Austrian Association for Software Tool Integration (AASTI)
* under one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. The AASTI licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openengsb.openengsbplugin.tools;
import java.io.File;
import java.util.List;
import java.util.Properties;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.logging.Log;
public interface MavenExecutor {
/**
* Builds and executes a {@link org.apache.maven.execution.MavenExecutionRequest MavenExecutionRequest} with given
* parameters. The request is copied from the wrapper request so all parameters except goals, activeProfiles,
* deactivateProfiles and userProperties are inherited and have to be changed explicitly.
*/
void execute(Log log) throws MojoExecutionException;
/**
* Changes this inherited parameter explicitely.
*
* @param interactiveMode true
enables interactive mode for this execution
* false
is equivalent to mvn --batch-mode <goal>
*/
void setInterActiveMode(boolean interactiveMode);
/**
* Changes this inherited parameter explicitely.
*
* @param recursive true
recursive execution of the embedded request
*/
void setRecursive(boolean recursive);
void addGoals(List goals);
void addActivatedProfiles(List activatedProfiles);
void addDeactivatedProfiles(List deactivatedProfiles);
void addUserProperties(Properties userproperties);
void addProperties(List goals, List activatedProfiles, List deactivatedProfiles,
Properties userproperties);
void setCustomPomFile(File pomFile);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy