Thursday, 28 January 2016

Gradle Installation Guide

By
Gradle is build tool that replace XML based build scripts with DSL(Domain Specific Languages) which is based on Groovy programming language.

This blog help you to instal Gradle

If we are using Windows or Linux, we can install Gradle by following these steps:
  1. Download the binaries from the downloads page.
  2. Unpack the zip file and add the GRADLE_HOME/bin directory to the PATH environment variable.
If we are using OS X, we can install Gradle by using Homebrew. We can do this by running the following command at command prompt:
brew install gradle
We can verify that Gradle is working properly by running the command gradle -v at command prompt. If Gradle is working properly, we should the following output (Windows and Linux users will naturally see a bit different output):
> gradle -v
------------------------------------------------------------ Gradle 2.10 ------------------------------------------------------------ Build time: 2015-12-21 21:15:04 UTC Build number: none Revision: 276bdcded730f53aa8c11b479986aafa58e124a6 Groovy: 2.4.4 Ant: Apache Ant(TM) version 1.9.3 compiled on December 23 2013 JVM: 1.7.0_21 (Oracle Corporation 23.21-b01) OS: Windows 8 6.2 x86

0 comments :

Post a Comment