Interface ProjectDependenciesResolver
- All Known Implementing Classes:
 DefaultProjectDependenciesResolver
public interface ProjectDependenciesResolver
Resolves the transitive dependencies of a project.
- 
Method Summary
Modifier and TypeMethodDescriptionresolve(DependencyResolutionRequest request) Resolves the transitive dependencies of a project. 
- 
Method Details
- 
resolve
DependencyResolutionResult resolve(DependencyResolutionRequest request) throws DependencyResolutionException Resolves the transitive dependencies of a project.- Parameters:
 request- The resolution request holding the parameters, must not benull.- Returns:
 - The resolution result, never 
null. - Throws:
 DependencyResolutionException- If any project dependency could not be resolved.
 
 -