>
> If taskGraph.hasTask() doesn't suit your needs, you can always do
>
> taskGraph.allTasks.any { it.project == project && it.name == "release" }
>
> or something similar.
>That is a clear example of why I like Gradle: there is always a short and (mostly) elegant way of getting it to do what you want. Cheers, --L
