1.install the gradle in your computer 2.set environmental varibale to gradle in windows
environmental Variable-Set Variabel of gradle of path
download the binary of gradle and go through the command in terminal
$ mkdir /opt/gradle
$ unzip -d /opt/gradle gradle-4.6-bin.zip
$ export PATH=$PATH:/opt/gradle/gradle-4.6/bin
$ gradle -v
mkdir project-Name
cd project-Name
*gradle init* -create a src folder in project
task copy(type: Copy, group: "Custom", description: "Copies sources to the dest directory") { from "src" into "dest" }
./gradlew <task Name>
#only buildscript and other plugin script block are allowed before plugins ,no other statment are allowed
plugin{ id="your plugin" }
./gradlew tasks
#The properties command tells you about a project’s attributes.
./gradlew properties