diff -r 45513923d474 -r ef63c4afe404 gradle.rst --- a/gradle.rst Sun Jan 17 17:45:23 2021 +0200 +++ b/gradle.rst Sun Jan 17 17:48:27 2021 +0200 @@ -345,6 +345,12 @@ configurations.each { println it.name } +There is a hierarchy of configurations, not all are resolvable or consumable:: + + configurations.each { + logger.lifecycle(String.format("%s, resolvable: %s, consumable: %s", it, it.canBeResolved, it.canBeConsumed)) + } + For each configuration ``build`` and ``upload`` are defined. Configuring external dependencies