Re: directed acyclic graph of the build

2021-04-13 Thread Tamás Cservenák
Howdy, you can see the "build plan" which is not DAG, but the ordered list out of DAG (sorted nodes in order DAG requires), just use `-X` on the command line. But again, this list does not reflect in reality "how the build is gonna execute"... As regarding the actual "build order", it depends on

Re: directed acyclic graph of the build

2021-04-13 Thread Delany
Im interested in modules though, not dependencies, at least not initially. If I say Maven give me a dag of project A, I'd expect it to go through the list of modules and create a tree. That's what it's going to build. The question then is what order to build them. Obviously project A would be

Re: directed acyclic graph of the build

2021-04-13 Thread Tibor Digana
DAG of the POM. I am using IntelliJ IDEA for such things but you can also use maven-dependency-plugin which prints the dependencies in the console. On Tue, Apr 13, 2021 at 1:26 PM Delany wrote: > Hi > > How can I get a DAG of the build? > I want to see how projects are being scheduled in a

directed acyclic graph of the build

2021-04-13 Thread Delany
Hi How can I get a DAG of the build? I want to see how projects are being scheduled in a multithreaded build. Thanks, Delany