caches


Tag: caches

Configures the Ivy cache system. since 2.0.
See cache concept for details on the Ivy cache concept.

By default, Ivy defines one repository cache instance, called 'default-cache', which uses the default cache settings defined using attributes on this tag. This default instance is defined as long as you don't define your own default cache using the 'default' attribute, and have at least one dependency resolver which doesn't specify which cache instance to use.

defaultCacheDir is the default directory used for both the resolution and repository cache(s). It usually points to a directory in your filesystem. If you want to isolate resolution cache from repository cache, we recommend setting both the resolutionCacheDir and repositoryCacheDir attributes on this tag instead of using defaultCacheDir.

Since repository cache implementations are pluggable, you can either define new cache instances based on the default implementation provided in Ivy using the cache child element, or use custom cache implementations using child elements as you have defined using typedef.

ivyPattern and artifactPattern are used to configure the default way Ivy stores ivy files and artifacts in repository cache(s). Usually you do not have to change this, unless you want to use the cache directly from another tool, which is not recommended. These patterns are relative to the repository cache base directory.

checkUpToDate indicates to ivy if it must check date of artifacts before retrieving them (i.e. copying them from
cache to another place in your filesystem). Usually it is a good thing to check date to avoid unnecessary copy, even if it's most of the time a local copy.

Attributes

AttributeDescriptionRequired
defaultthe name of the default cache to use on all resolvers not defining the cache instance to use No, defaults to a default cache manager instance named 'default-cache'
defaultCacheDira path to a directory to use as default basedir for both resolution and repository cache(s) No, defaults to .ivy2/cache in the user's home directory
resolutionCacheDirthe path of the directory to use for all resolution cache data No, defaults to defaultCacheDir
repositoryCacheDirthe path of the default directory to use for repository cache data. This should not point to a directory used as a repository! No, defaults to defaultCacheDir
ivyPatterndefault pattern used to indicate where ivy files should be put in the repository cache(s) No, defaults to [organisation]/[module]/ivy-[revision].xml
artifactPatterndefault pattern used to indicate where artifact files should be put in the repository cache(s) No, defaults to [organisation]/[module]/[type]s/[artifact]-[revision].[ext]
checkUpToDateIndicates if date should be checked before retrieving artifacts from cache.
Deprecated, we recommend using overwriteMode on the retrieve task instead
No, defaults to true
useOriginthe default value to use for useOrigin for caches in which it isn't specifically defined.
Use true to avoid the copy of local artifacts to the cache and use directly their original location.
No, defaults to false
lockStrategythe name of the default lock strategy to use when accessing repository cache(s) No, defaults to no-lock

Child elements

ElementDescriptionCardinality
cachedefines a new repository cache instance, based on the default repository cache implementation 0..n

Examples

<caches>
<cache name="mycache" basedir="path/to/my/cache/1" />
<cache name="mycache2" basedir="path/to/my/cache/2" />
</caches>
Define 2 cache instances, named mycache and mycache2, using two different directories as base directory, and using the default patterns and lock strategies. The default cache instance will still be defined as long as at least one dependency resolver does not declare which cache manager to use.