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 Summary
Modifier and TypeMethodDescriptionvoid
buildCache
(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for entries in the local build cache.void
createdResources
(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for resources that are created by Gradle during the course of a build.void
downloadedResources
(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.void
releasedWrappers
(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for wrapper distributions that are released Gradle versions.void
snapshotWrappers
(Action<? super CacheResourceConfiguration> cacheConfiguration) Configures caching for wrapper distributions that are snapshot Gradle versions.
-
Method Details
-
releasedWrappers
Configures caching for wrapper distributions that are released Gradle versions. By default, released distributions are removed after 30 days of not being used. -
getReleasedWrappers
CacheResourceConfiguration getReleasedWrappers()Returns the cache configuration for wrapper distributions that are released Gradle versions. -
snapshotWrappers
Configures caching for wrapper distributions that are snapshot Gradle versions. By default, snapshot distributions are removed after 7 days of not being used. -
getSnapshotWrappers
CacheResourceConfiguration getSnapshotWrappers()Returns the cache configuration for wrapper distributions that are released Gradle versions. -
downloadedResources
Configures caching for resources that are downloaded during Gradle builds. By default, downloaded resources are removed after 30 days of not being used. -
getDownloadedResources
CacheResourceConfiguration getDownloadedResources()Returns the cache configuration for downloaded resources. -
createdResources
Configures 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. -
getCreatedResources
CacheResourceConfiguration getCreatedResources()Returns the cache configuration for created resources. -
buildCache
Configures 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
-
getBuildCache
CacheResourceConfiguration getBuildCache()Returns the cache configuration for local build cache.- Since:
- 8.8
-
getCleanup
Returns the cache cleanup settings that apply to all caches. -
getMarkingStrategy
Property<MarkingStrategy> getMarkingStrategy()Configures how caches should be marked, if at all.By default, caches are marked using
MarkingStrategy.CACHEDIR_TAG
.- Since:
- 8.1
-