0 votes
in Gradle by
What do you mean by Gradle Build Task?

1 Answer

0 votes
by
A Gradle Build Task comprises of more than one project/task representing the work done with Gradle. For example, it can represent a web application or a library jar or an activity that used Gradle and so on.

Let’s look at the main features of Gradle build tasks:

Every task has a life-cycle method- do last and do first.

You can configure the DAG

Task dependencies are defined using properties like dependsOn, mustRunafter and so on.

Related questions

0 votes
asked Jan 31, 2020 in Gradle by rahuljain1
0 votes
asked Apr 14, 2020 in Gradle by Robindeniel
...