1 package org.apache.maven.project.interpolation; 2 3 18 19 import org.apache.maven.model.Model; 20 21 import java.util.Map ; 22 23 28 public interface ModelInterpolator 29 { 30 String ROLE = ModelInterpolator.class.getName(); 31 32 Model interpolate( Model project, Map context ) 33 throws ModelInterpolationException; 34 35 Model interpolate( Model model, Map context, boolean strict ) 36 throws ModelInterpolationException; 37 } | Popular Tags |