What is Gradle ?
Gradle is an open-source build automation tool and build management system used primarily in Java, but it can also be used for other programming languages. It is designed to simplify the process of building, testing, and deploying software projects. Gradle uses a domain-specific language (DSL) based on Groovy or Kotlin for writing build scripts, which allows for a highly flexible and customizable build process.
Download Gradle:
- Go to the Gradle website: https://gradle.org/install/
- Under “Install manually,” click on “Binary-only distribution.”
- Download the latest version of Gradle (ZIP archive) for Windows.
Just go this URL :- https://gradle.org/releases/
After download open downloaded file and extract all
After extract go to open extracted file and go to bin path and copy as per below
C:\Users\amitc\Downloads\gradle-8.2.1\bin
Next go to environment variable and remove last letter bin
Paste below code
GRADLE_HOME
C:\Users\amitc\Downloads\gradle-8.2.1
Next click on ok and apply changes
Next to open cmd and put below code
gradle -version
Now Gradle installed successfully 👍👍
[…] How to install Gradle on windows ? […]