Summary
- Assembly
- Cake
.Gradle .dll - Namespace
- Cake
.Gradle - Base Types
-
- Object
Syntax
public static class GradleBootstrapAlias
Examples
get the current gradle version.
Task("Bootstrap-Gradle")
.Does(() =>
{
BootstrapGradle("7.0.2");
});
Attributes
Type | Description |
---|---|
Cake |
Methods
Name | Value | Summary |
---|---|---|
Bootstrap |
void |
Bootstrap the current gradle version into the tools folder.
Be aware that this is always the current version, as found in https://services.gradle.org/versions/current So the versions of gradle might change between usages. static
|
BootstrapGradle |
void |
Bootstrap a specific version of gradle.
The version must be a complete match and exist in the gradle list of versions.
I.e. The static
|
Bootstrap |
void |
Bootstrap the nightly gradle version into the tools folder.
Be aware that this is always the nightly version, as found in https://services.gradle.org/versions/nightly So the versions of gradle might change between usages. Also, as this is the nightly version, it is entirely possible that this version might not be completely stable. static
|
Extension Methods
Name | Value | Summary |
---|---|---|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|