Package org.gradle.api.cache
Interface CacheConfigurations
Configures caches stored in the user home directory.  Note that these values can be read at any time,
 but can only be configured via an init script, ideally stored in the init.d directory in the user home
 directory.
- Since:
- 8.0
- 
Method SummaryModifier and TypeMethodDescriptionvoidbuildCache(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for entries in the local build cache.voidcreatedResources(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for resources that are created by Gradle during the course of a build.voiddownloadedResources(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for resources that are downloaded during Gradle builds.Returns the cache configuration for local build cache.Returns the cache cleanup settings that apply to all caches.Returns the cache configuration for created resources.Returns the cache configuration for downloaded resources.Configures how caches should be marked, if at all.Returns the cache configuration for wrapper distributions that are released Gradle versions.Returns the cache configuration for wrapper distributions that are released Gradle versions.voidreleasedWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for wrapper distributions that are released Gradle versions.voidsnapshotWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for wrapper distributions that are snapshot Gradle versions.
- 
Method Details- 
releasedWrappersConfigures caching for wrapper distributions that are released Gradle versions. By default, released distributions are removed after 30 days of not being used.
- 
getReleasedWrappersCacheResourceConfiguration getReleasedWrappers()Returns the cache configuration for wrapper distributions that are released Gradle versions.
- 
snapshotWrappersConfigures caching for wrapper distributions that are snapshot Gradle versions. By default, snapshot distributions are removed after 7 days of not being used.
- 
getSnapshotWrappersCacheResourceConfiguration getSnapshotWrappers()Returns the cache configuration for wrapper distributions that are released Gradle versions.
- 
downloadedResourcesConfigures caching for resources that are downloaded during Gradle builds. By default, downloaded resources are removed after 30 days of not being used.
- 
getDownloadedResourcesCacheResourceConfiguration getDownloadedResources()Returns the cache configuration for downloaded resources.
- 
createdResourcesConfigures caching for resources that are created by Gradle during the course of a build. By default, created resources are removed after 7 days of not being used.
- 
getCreatedResourcesCacheResourceConfiguration getCreatedResources()Returns the cache configuration for created resources.
- 
buildCacheConfigures caching for entries in the local build cache. By default, build cache entries are removed after 7 days of not being used.- Since:
- 8.8
 
- 
getBuildCacheCacheResourceConfiguration getBuildCache()Returns the cache configuration for local build cache.- Since:
- 8.8
 
- 
getCleanupReturns the cache cleanup settings that apply to all caches.
- 
getMarkingStrategyProperty<MarkingStrategy> getMarkingStrategy()Configures how caches should be marked, if at all.By default, caches are marked using MarkingStrategy.CACHEDIR_TAG.- Since:
- 8.1
 
 
-