Uses of Interface
org.apache.ivy.plugins.IvySettingsAware
-
Packages that use IvySettingsAware Package Description org.apache.ivy.core.cache org.apache.ivy.core.pack org.apache.ivy.plugins.conflict org.apache.ivy.plugins.version -
-
Uses of IvySettingsAware in org.apache.ivy.core.cache
Classes in org.apache.ivy.core.cache that implement IvySettingsAware Modifier and Type Class Description class
DefaultRepositoryCacheManager
class
DefaultResolutionCacheManager
-
Uses of IvySettingsAware in org.apache.ivy.core.pack
Classes in org.apache.ivy.core.pack that implement IvySettingsAware Modifier and Type Class Description class
PackagingManager
-
Uses of IvySettingsAware in org.apache.ivy.plugins.conflict
Classes in org.apache.ivy.plugins.conflict that implement IvySettingsAware Modifier and Type Class Description class
AbstractConflictManager
class
FixedConflictManager
class
LatestCompatibleConflictManager
This conflict manager can be used to allow only compatible dependencies to be used together (like the strict conflict manager), but it has the advantage of using a best effort algorithm to find a set of compatible dependencies, even if it requires stepping back to older revisions (as long as they are in the set of compatibility).class
LatestConflictManager
class
NoConflictManager
class
RegexpConflictManager
A ConflictManager that can be used to resolve conflicts based on regular expressions of the revision of the module.class
StrictConflictManager
-
Uses of IvySettingsAware in org.apache.ivy.plugins.version
Classes in org.apache.ivy.plugins.version that implement IvySettingsAware Modifier and Type Class Description class
AbstractVersionMatcher
class
ChainVersionMatcher
An implementation ofVersionMatcher
chaining several version matchers, and implementing theVersionMatcher
interface by returning results from the first matcher in the chain accepting the version.class
ExactVersionMatcher
class
LatestVersionMatcher
class
MavenTimedSnapshotVersionMatcher
AVersionMatcher
which understandsMaven timestamped snapshots
.class
PatternVersionMatcher
class
SubVersionMatcher
class
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.
-