Interface RemoteBuildCache
Deprecated.
Configures the remote build cache.
The specified values will take precedence over the values defined in the gradle-enterprise.xml
.
- Since:
- 1.6.5
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the server configuration.boolean
Deprecated.Whether the remote build cache is enabled.boolean
Deprecated.Whether storing build cache entries is enabled.void
setEnabled
(boolean enabled) Deprecated.Sets whether to enable the remote build cache.void
setStoreEnabled
(boolean storeEnabled) Deprecated.Sets whether to store build cache entries.
-
Method Details
-
isEnabled
boolean isEnabled()Deprecated.Whether the remote build cache is enabled.- Returns:
true
if the remote build cache is enabled,false
otherwise- Since:
- 1.6.5
-
setEnabled
void setEnabled(boolean enabled) Deprecated.Sets whether to enable the remote build cache.Configuration via the
gradle.cache.remote.enabled
system property will always take precedence.- Parameters:
enabled
- whether to enable the remote build cache- Since:
- 1.6.5
-
isStoreEnabled
boolean isStoreEnabled()Deprecated.Whether storing build cache entries is enabled.- Returns:
true
if storing build cache entries is enabled,false
otherwise- Since:
- 1.6.5
-
setStoreEnabled
void setStoreEnabled(boolean storeEnabled) Deprecated.Sets whether to store build cache entries.Configuration via the
gradle.cache.remote.storeEnabled
system property will always take precedence.- Parameters:
storeEnabled
- whether to enable storing build cache entries- Since:
- 1.6.5
-
getServer
Server getServer()Deprecated.Gets the server configuration.- Returns:
- the server configuration
- Since:
- 1.6.5
-
RemoteBuildCache