Package org.apache.maven.model.plugin
Interface LifecycleBindingsInjector
public interface LifecycleBindingsInjector
Handles injection of plugin executions induced by the lifecycle bindings for a packaging.
- Author:
- Benjamin Bentmann
-
Method Summary
Modifier and TypeMethodDescriptionvoid
injectLifecycleBindings
(Model model, ModelBuildingRequest request, ModelProblemCollector problems) Injects plugin executions induced by lifecycle bindings into the specified model.
-
Method Details
-
injectLifecycleBindings
void injectLifecycleBindings(Model model, ModelBuildingRequest request, ModelProblemCollector problems) Injects plugin executions induced by lifecycle bindings into the specified model. The model has already undergone injection of plugin management so any plugins that are injected by lifecycle bindings and are not already present in the model's plugin section need to be subjected to the model's plugin management.- Parameters:
model
- The model into which to inject the default plugin executions for its packaging, must not benull
.request
- The model building request that holds further settings, must not benull
.problems
- The container used to collect problems that were encountered, must not benull
.
-