Package org.apache.maven.project
Class ModelUtils
java.lang.Object
org.apache.maven.project.ModelUtils
Deprecated.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
mergeFilterLists
(List<String> childFilters, List<String> parentFilters) Deprecated.static void
mergePluginDefinitions
(Plugin child, Plugin parent, boolean handleAsInheritance) Deprecated.static void
mergePluginLists
(PluginContainer childContainer, PluginContainer parentContainer, boolean handleAsInheritance) Deprecated.This should be the resulting ordering of plugins after merging:static List<Repository>
mergeRepositoryLists
(List<Repository> dominant, List<Repository> recessive) Deprecated.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. -
mergeRepositoryLists
public static List<Repository> mergeRepositoryLists(List<Repository> dominant, List<Repository> recessive) Deprecated. -
mergeFilterLists
Deprecated.
-