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 gradle.properties file?
Thank you in advance.