I can query the dependency tree for a Gradle project with ./gradlew -q dependencies
.
I can also run the query for the service
subproject with ./gradlew service:dependencies
.
How can I list the dependencies automatically for all subprojects from the command line without modifying the build.gradle file?
Thank you in advance.