Interface DependencyManagementImporter
-
- All Known Implementing Classes:
DefaultDependencyManagementImporter
public interface DependencyManagementImporterHandles the import of dependency management from other models into the target model.- Author:
- Benjamin Bentmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidimportManagement(org.apache.maven.model.Model target, java.util.List<? extends org.apache.maven.model.DependencyManagement> sources, ModelBuildingRequest request, ModelProblemCollector problems)Imports the specified dependency management sections into the given target model.
-
-
-
Method Detail
-
importManagement
void importManagement(org.apache.maven.model.Model target, java.util.List<? extends org.apache.maven.model.DependencyManagement> sources, ModelBuildingRequest request, ModelProblemCollector problems)Imports the specified dependency management sections into the given target model.- Parameters:
target- The model into which to import the dependency management section, must not benull.sources- The dependency management sections to import, may benull.request- The model building request that holds further settings, must not benull.problems- The container used to collect problems that were encountered, must not benull.
-
-