This message was deleted.
# develocity
s
This message was deleted.
d
I guess you mean "tasks which were created but not _executed_". In that case I don't think there's an obvious list. We usually recommend that builds try to minimize the number of tasks
Created during configuration
, which is displayed in the Build Scan. AFAIK there's no simple way to get a list of all of these tasks in a Build Scan: you can see the ones created during Plugin application like this, but I don't think we capture tasks created by a build script directly.
I guess a task must be created in order to be configured, so reducing the number of created tasks is probably your best bet.
m
hey Daz! Yes, I meant created. Basically I'd like to hunt redundant configuration. Would be nice to have a view which simply lists that: given an invocation, there are tasks which are created, but some would never be executed.
6
d
Yep, I think logging is the only way to work this out. It can be worthwhile to run something like
gradle help
and eliminate all other task creation.
s