Table of Contents
API Documentation: | BuildCacheConfiguration |
---|
Configuration for the build cache for an entire Gradle build.
Method | Description |
local(configuration) | Executes the given action against the local configuration. |
remote(type) | Configures a remote cache with the given type. |
remote(type, configuration) | Configures a remote cache with the given type. |
remote(configuration) | Executes the given action against the currently configured remote cache. |
DirectoryBuildCache
local
(read-only)
The local directory cache configuration.
BuildCache
remote
(read-only)
The remote cache configuration.
void
local
(Action
<? super DirectoryBuildCache
>
configuration)
Action
<? super DirectoryBuildCache
>Executes the given action against the local configuration.
T
remote
(Class
<T
>
type)
Class
<T
>Configures a remote cache with the given type.
If a remote build cache has already been configured with a different type, this method replaces it.
Storing ("push") in the remote build cache is disabled by default.
Configures a remote cache with the given type.
If a remote build cache has already been configured with a different type, this method replaces it.
If a remote build cache has already been configured with the same, this method configures it.
Storing ("push") in the remote build cache is disabled by default.
void
remote
(Action
<? super BuildCache
>
configuration)
Action
<? super BuildCache
>Executes the given action against the currently configured remote cache.