File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ Changelog
44This changelog format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
55This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ Version 3.0.0 (2024-03-29)
8+ ----------------------------
9+ * Add option ` --with-description ` to print task descriptions
10+ * Omit inputs, outputs and task descriptions for repeated tree nodes
11+
712Version 2.1.1 (2022-12-31)
813----------------------------
914* Support Gradle 7.6
Original file line number Diff line number Diff line change 11# Gradle Task Tree
22
3- [ ![ version] ( https://img.shields.io/badge/version-2.1.1 -orange.svg )] ( ./CHANGELOG.md )
3+ [ ![ version] ( https://img.shields.io/badge/version-3.0.0 -orange.svg )] ( ./CHANGELOG.md )
44
55Gradle plugin that adds a ` taskTree ` task that prints task dependency tree report to the console.
66
@@ -16,7 +16,7 @@ The plugin is published on [Gradle Plugin Portal](https://plugins.gradle.org/plu
1616
1717``` groovy
1818plugins {
19- id "com.dorongold.task-tree" version "2.1.1 "
19+ id "com.dorongold.task-tree" version "3.0.0 "
2020}
2121```
2222
@@ -30,7 +30,7 @@ initscript {
3030 maven { url "https://plugins.gradle.org/m2" }
3131 }
3232 dependencies {
33- classpath "com.dorongold.plugins:task-tree:2.1.1 "
33+ classpath "com.dorongold.plugins:task-tree:3.0.0 "
3434 }
3535}
3636rootProject {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ buildscript {
1010 }
1111 }
1212 dependencies {
13- classpath ' com.gradle.publish:plugin-publish-plugin:0.15 .0'
13+ classpath ' com.gradle.publish:plugin-publish-plugin:0.21 .0'
1414 }
1515}
1616
2525}
2626
2727group = ' com.dorongold.plugins'
28- version = ' 2.1.1 '
28+ version = ' 3.0.0 '
2929description = " Gradle plugin that adds a 'taskTree' task that prints task dependency tree"
3030
3131// Building a text file that contains the classpath of the plugin code. needed for testing on gradle versions prior to 2.5
You can’t perform that action at this time.
0 commit comments