Package org.apache.maven.project
Class ModelUtils
java.lang.Object
org.apache.maven.project.ModelUtils
Deprecated.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic voidmergeFilterLists(List<String> childFilters, List<String> parentFilters) Deprecated.static voidmergePluginDefinitions(Plugin child, Plugin parent, boolean handleAsInheritance) Deprecated.static voidmergePluginLists(PluginContainer childContainer, PluginContainer parentContainer, boolean handleAsInheritance) Deprecated.This should be the resulting ordering of plugins after merging:orderAfterMerge(List<Plugin> merged, List<Plugin> highPrioritySource, List<Plugin> lowPrioritySource) Deprecated. 
- 
Constructor Details
- 
ModelUtils
public ModelUtils()Deprecated. 
 - 
 - 
Method Details
- 
mergePluginLists
public static void mergePluginLists(PluginContainer childContainer, PluginContainer parentContainer, boolean handleAsInheritance) Deprecated.This should be the resulting ordering of plugins after merging:Given:
parent: X -> A -> B -> D -> E child: Y -> A -> C -> D -> F
Result:X -> Y -> A -> B -> C -> D -> E -> F
 - 
orderAfterMerge
public static List<Plugin> orderAfterMerge(List<Plugin> merged, List<Plugin> highPrioritySource, List<Plugin> lowPrioritySource) Deprecated. - 
mergePluginDefinitions
Deprecated. - 
mergeFilterLists
Deprecated. 
 -