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 classDefaultRepositoryCacheManagerclassDefaultResolutionCacheManager -
Uses of IvySettingsAware in org.apache.ivy.core.pack
Classes in org.apache.ivy.core.pack that implement IvySettingsAware Modifier and Type Class Description classPackagingManager -
Uses of IvySettingsAware in org.apache.ivy.plugins.conflict
Classes in org.apache.ivy.plugins.conflict that implement IvySettingsAware Modifier and Type Class Description classAbstractConflictManagerclassFixedConflictManagerclassLatestCompatibleConflictManagerThis 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).classLatestConflictManagerclassNoConflictManagerclassRegexpConflictManagerA ConflictManager that can be used to resolve conflicts based on regular expressions of the revision of the module.classStrictConflictManager -
Uses of IvySettingsAware in org.apache.ivy.plugins.version
Classes in org.apache.ivy.plugins.version that implement IvySettingsAware Modifier and Type Class Description classAbstractVersionMatcherclassChainVersionMatcherAn implementation ofVersionMatcherchaining several version matchers, and implementing theVersionMatcherinterface by returning results from the first matcher in the chain accepting the version.classExactVersionMatcherclassLatestVersionMatcherclassMavenTimedSnapshotVersionMatcherAVersionMatcherwhich understandsMaven timestamped snapshots.classPatternVersionMatcherclassSubVersionMatcherclassVersionRangeMatcherMatches 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.
-