./gradle tasks lists “some” of the tasks. Looking at
http://gradle.org/docs/current/userguide/java_plugin.html there are hidden ones not listed. Also, other plugins will not have such a nice pretty graph of the dependencies between tasks.
Is there a way to
- list all the tasks in all plugins with gradle
- list the tasks and what tasks they depend on (sort of like maven’s
dependency:treebut for tasks)
Prior to Gradle 3.3, you could use the
--allflag to get a more detailed listing of the available tasks and the task dependencies:The dependency reporting was removed from this task as of Gradle 3.3 for performance reasons. This change and its rationale was documented in the Gradle 3.3 release notes.