Package org.apache.maven.project
Class ModelUtils
java.lang.Object
org.apache.maven.project.ModelUtils
Deprecated.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static List<Dependency>
mergeDependencyList
(List<Dependency> child, List<Dependency> parent) Deprecated.static void
mergeFilterLists
(List<String> childFilters, List<String> parentFilters) Deprecated.static void
mergePluginDefinitions
(Plugin child, Plugin parent, boolean handleAsInheritance) Deprecated.private static void
mergePluginExecutionDefinitions
(PluginExecution child, PluginExecution parent) 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. -
mergePluginExecutionDefinitions
Deprecated. -
mergeRepositoryLists
public static List<Repository> mergeRepositoryLists(List<Repository> dominant, List<Repository> recessive) Deprecated. -
mergeFilterLists
Deprecated. -
mergeDependencyList
private static List<Dependency> mergeDependencyList(List<Dependency> child, List<Dependency> parent) Deprecated.
-