Class AbstractStringBasedModelInterpolator

java.lang.Object
org.apache.maven.model.interpolation.AbstractStringBasedModelInterpolator
All Implemented Interfaces:
ModelInterpolator
Direct Known Subclasses:
StringVisitorModelInterpolator

public abstract class AbstractStringBasedModelInterpolator extends Object implements ModelInterpolator
Use a regular expression search to find and resolve expressions within the POM.
Author:
jdcasey Created on Feb 3, 2005
  • Constructor Details

    • AbstractStringBasedModelInterpolator

      @Inject public AbstractStringBasedModelInterpolator(PathTranslator pathTranslator, UrlNormalizer urlNormalizer)
  • Method Details

    • interpolateModel

      public Model interpolateModel(Model model, File projectDir, ModelBuildingRequest request, ModelProblemCollector problems)
      Description copied from interface: ModelInterpolator
      Interpolates expressions in the specified model. Note that implementations are free to either interpolate the provided model directly or to create a clone of the model and interpolate the clone. Callers should always use the returned model and must not rely on the input model being updated.
      Specified by:
      interpolateModel in interface ModelInterpolator
      Parameters:
      model - The model to interpolate, must not be null.
      projectDir - The project directory, may be null if the model does not belong to a local project but to some artifact's metadata.
      request - The model building request that holds further settings, must not be null.
      problems - The container used to collect problems that were encountered, must not be null.
      Returns:
      The interpolated model, never null.
    • createValueSources

      protected List<org.codehaus.plexus.interpolation.ValueSource> createValueSources(Model model, File projectDir, ModelBuildingRequest config)
    • createPostProcessors

      protected List<? extends org.codehaus.plexus.interpolation.InterpolationPostProcessor> createPostProcessors(Model model, File projectDir, ModelBuildingRequest config)
    • createRecursionInterceptor

      protected org.codehaus.plexus.interpolation.RecursionInterceptor createRecursionInterceptor()