Source code on github: https://github.com/kendarorg/Gradle101
Run 'gradle init' and select the following to setup a simple stub application with unit tests
Since now a file called "gradlew.bat" is created. You don't need to have gradle on the PATH variable anymore. This is a wrapper to the project-local gradle!
"The Gradle wrapper makes sure your build is always run with the same Gradle version, no matter who executes the build and where or that Gradle is installed or not, as long as the one uses the Gradle wrapper to build the project. This means you can design your build for that Gradle version and be sure that the build will not fail, just because someone is using a different version of Gradle and thus is also an important step in build reproducibility." (from stackoverflow )
We can then build the project running "gradle build"
Now we can see several commands to analyze the project