When i run ./gradlew dependencies
i get whole dependency tree including prod/main and test.
How can i get list of only production/main dependencies in result of dependencies task
Official documentation https://docs.gradle.org/current/userguide/viewing_debugging_dependencies.html suggests how to show dependencies that would be required on a specific config, say test runtime classpath in a Java project:
`gradle -q dependencies --configuration testRuntimeClasspath`
After googling, i found command gradlew dependencies --configuration compileClasspath
Will it's result contain runtime dependencies too ?
How can i get list of dependencies, excluding test dependencies in result of dependencies task?