dorongold / gradle-task-tree

Gradle plugin that adds a 'taskTree' task that prints task dependency tree
Apache License 2.0
857 stars 56 forks source link

Nothing is printed for single project #44

Closed jvmlet closed 3 years ago

jvmlet commented 3 years ago

I have single flat project (without subprojects)

I execute gradlew build taskTree --init-script $pathToScriptBelow

initscript {
    repositories {
        maven { url "https://plugins.gradle.org/m2" }
    }
    dependencies {
        classpath "gradle.plugin.com.dorongold.plugins:task-tree:1.5"
    }
}
rootProject {
    apply plugin: com.dorongold.gradle.tasktree.TaskTreePlugin
}

and nothing is printed.

dorongold commented 3 years ago

Fixed by fb19b847e2a6c419092c2231cc1839377bfb675b.

jvmlet commented 3 years ago

Thanks, gradle-task-tree was integrated into IntelliJ IDEA plugin

dorongold commented 3 years ago

@jvmlet That's awesome! Also, thanks for the credits in your README and plugin description.

I now added a reference to your plugin here in the README. d11352e30b755b257f30a6dc10d2369236cb4ba0