Posts

How to install Gradle on Windows

Gradle Step by Step Guide 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 for declaring the project configuration.  Gradle was designed for multi-project builds, which can grow to be quite large. It supports incremental builds by intelligently determining which parts of the build tree are up to date; any task dependent only on those parts does not need to be re-executed. Prerequisite: Java JDK or JRE version 7 or higher. Gradle (Any Version). Checking Java JDK version: If you don't know the version of Java JDK installed on your PC you can simply check it by opening up the command prompt and typing the command "java -version". $ java -version java version "1.8.0_121" Download Gradle: To download the latest version of Gradle visit Gradle official download page  and 

TechCrunch RSS Feed