I asked this question a long time ago....
Is there a way to list task dependencies in Gradle?
and annotated what I do these days as my project has grown to an unweildy task count. I can then list all tasks for a certain project like
./gradlew :core:core-channelmanager2:asynch-server:tasks --all
and this gives me a nice task list and dependencies of JUST that project. My master root project however does not have many of the plugins my subprojects have since it doesn't need them, but I still need to understand it's task list. I know I can do this
./gradlew tasks --all
but that prints the world. I can't seem to do this
./gradlew :master:tasks --all
nor this
./gradlew :webpieces:tasks --all
where webpieces is my project here ... https://github.com/deanhiller/webpieces/blob/master/build.gradle
Is there a way to list ALL the root projects task so I can get a clear picture of my root project?
thanks, Dean