Defining and Executing Tasks in Gradle
Gradle is an open-source build automation tool focused on flexibility and performance. Gradle build scripts are written using a Groovy or Kotlin DSL. Using DSL language you write your build script file as you write your development code. Some advantages in use Gradle are:
Acelerate development productivity Build by convention Automate everything Deliver faster persuing performance Multy-module projects Reusable pieces of build logic Intelligent tasks that can check if they need to be executed or not In this post I will show you how to build software using simply but useful Gradle functionality.
[Read More]