Installation
The easiest way to install Gradle is to use Brew. First, install Brew.
Then we can install Gradle.
When we decide to update to latest version of Gradle, execute the following command.
When working with Gradle project, we might want to freeze version of Gradle. Because other versions of Gradle might break the build. Put this into a build.gradle
file.
Then we run gradle wrapper
in console and it generates gradle wrapper that ensure the project is build using the specified version.
Last updated
Was this helpful?