# HG changeset patch # User Oleksandr Gavenko # Date 1610898507 -7200 # Node ID ef63c4afe404d09e5f83c0b3fe22fef3358bc4b7 # Parent 45513923d474d1ae9a75a666b02072e0b9903dea Not all are resolvable or consumable. 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