org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategySee: Description
| Interface | Description |
|---|---|
| VersionMatcher |
Compares version selectors against candidate versions, indicating whether they match or not.
|
| Class | Description |
|---|---|
| ExactVersionMatcher |
Version matcher for "static" version selectors (1.0, 1.2.3, etc.).
|
| LatestVersionMatcher | |
| ResolverStrategy | |
| SubVersionMatcher |
Version matcher for dynamic version selectors ending in '+'.
|
| VersionRangeMatcher |
Matches version ranges: [1.0,2.0] matches all versions greater or equal to 1.0 and lower or equal
to 2.0 [1.0,2.0[ matches all versions greater or equal to 1.0 and lower than 2.0 ]1.0,2.0]
matches all versions greater than 1.0 and lower or equal to 2.0 ]1.0,2.0[ matches all versions
greater than 1.0 and lower than 2.0 [1.0,) matches all versions greater or equal to 1.0 ]1.0,)
matches all versions greater than 1.0 (,2.0] matches all versions lower or equal to 2.0 (,2.0[
matches all versions lower than 2.0 This class uses a latest strategy to compare revisions.
|
org.gradle.api.internal.artifacts.ivyservice.ivyresolve.strategy