What are real-world examples of Gradle's dependency graph?
- by Michael Easter
As noted in the documentation, Gradle uses a directed acyclic graph (DAG) to build a dependency graph. From my understanding, having separate cycles for evaluation and execution is a major feature for a build tool. e.g. The Gradle doc states that this enables some features that would otherwise be impossible.
I'm interested in real-world examples…