I need to know which task are given in the command line , ie. gradle clean build sonarqube
In my my script I want to do something like this:
if (arg.tasks .contains(“sonarqube”)) {
// Do things
}
else {
// Do other things
}
where do I find gradle arguments ?