How to Install Gradle in Simple Steps |
Gradle is an open source build automation system that builds upon the concepts of Apache Ant and Apache Maven and introduces a Groovy-based domain-specific language (DSL) instead of the XML form used by Apache Maven of declaring the project configuration. Gradle uses a directed acyclic graph ("DAG") to determine the order in which tasks can be run.
Gradle was designed for multi-project builds which can grow to be quite large, and supports incremental builds by intelligently determining which parts of the build tree are up-to-date, so that any task dependent upon those parts will not need to be re-executed.
How to Install Gradle in Simple Steps :
- Download latest version of Gradle in http://gradle.org/gradle-download/
- Make dircetory "Gradle" in C:\Program Files\ and copy file gradle-x.xx-all.zip to this drictory. and extract this file
- Setup Environtment Variable
- Create New System Variable GRADLE_HOME and type your directory location of gradle
- Edit "Path" and type "%GRADLE_HOME%/bin"
- Check your gradle instalation on Command Prompt with type "gradle -v"
- Finish.
Extract file gradle-x.xx-all.zip in C:\Program Files\ |
Setup Environtment Variable |
Create New System Variable |
Setup Environtment Variable |
check gradle instalation |
0 Comments