This changelog format is based on Keep a Changelog.
This project adheres to Semantic Versioning.
- Minimum supported Gradle version bumped to 7.6.
- Compatibility with Gradle Configuration Cache.
- Support for tasks from included builds:
- Tasks from included builds (and their task dependency sub-trees) will appear in the task tree, just like tasks from the main build.
- Note: Only tasks that are part of a task tree rooted at an entry task (a task given to the gradle command) will be shown.
Tasks from included builds that Gradle runs automatically before the main task graph is ready (e.g.
:<included project>:compileJava
) may not appear in the task tree.
- The plugin no longer applies itself to all subprojects. Instead, the
taskTree
task is registered in all subprojects. This should slightly reduce this plugin's footprint (performance-wise) in large multi-projects.
- Add option
--with-description
to print task descriptions. - Omit inputs, outputs and task descriptions for repeated tree nodes.
- Support Gradle 7.6.
- Upgrade
org.apache.commons:commons-lang3
due to vulnerability.
- Support Gradle 6.8 and make it the minimum supported Gradle version.
- Add options
--with-inputs
and--with-outputs
to print task inputs and outputs. - Change option
--task-depth
to--depth
. - Change default behavior to not repeat an already printed sub-tree. Option
--no-repeat
replaced with--repeat
.
- Compatibility with gradle 6.
- Add
--task-depth
option to limit tree depth. - Fix bug:
No such property task for class TransformInfo$ChainedTransformInfo
.
- Compatibility with gradle version 5.0-milestone-1.
- Compatibility with all gradle versions >= 2.3.
- Update gradle wrapper to 3.4.
- Better multi-project handling:
- Applying the plugin on the root project adds the taskTree task to all child projects.
- Applying the plugin under
allrojects
orsubprojects
exhibits the same behavior (and does not fail anymore due totask taskTree is already defined
).