How can I get a list of all configurations for a Gradle project? June 29, 2023 by Tarik Have you tried: configurations.each { println it.name } ?