Class NearestVersionSelector
- java.lang.Object
-
- org.eclipse.aether.util.graph.transformer.ConflictResolver.VersionSelector
-
- org.eclipse.aether.util.graph.transformer.NearestVersionSelector
-
public final class NearestVersionSelector extends ConflictResolver.VersionSelector
A version selector for use withConflictResolverthat resolves version conflicts using a nearest-wins strategy. If there is no single node that satisfies all encountered version ranges, the selector will fail.
-
-
Constructor Summary
Constructors Constructor Description NearestVersionSelector()Creates a new instance of this version selector.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidselectVersion(ConflictResolver.ConflictContext context)Determines the winning node among conflicting dependencies.-
Methods inherited from class org.eclipse.aether.util.graph.transformer.ConflictResolver.VersionSelector
getInstance
-
-
-
-
Constructor Detail
-
NearestVersionSelector
public NearestVersionSelector()
Creates a new instance of this version selector.
-
-
Method Detail
-
selectVersion
public void selectVersion(ConflictResolver.ConflictContext context) throws org.eclipse.aether.RepositoryException
Description copied from class:ConflictResolver.VersionSelectorDetermines the winning node among conflicting dependencies. Implementations will usually iterateConflictResolver.ConflictContext.getItems(), inspectConflictResolver.ConflictItem.getNode()and eventually callConflictResolver.ConflictContext.setWinner(ConflictResolver.ConflictItem)to deliver the winner. Failure to select a winner will automatically fail the entire conflict resolution.- Specified by:
selectVersionin classConflictResolver.VersionSelector- Parameters:
context- The conflict context, must not benull.- Throws:
org.eclipse.aether.RepositoryException- If the version selection failed.
-
-